home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270_src.lha / gcc-2.7.0-amiga / c-parse.c < prev    next >
C/C++ Source or Header  |  1995-06-15  |  140KB  |  3,674 lines

  1.  
  2. /*  A Bison parser, made from c-parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    STRUCT    268
  18. #define    UNION    269
  19. #define    IF    270
  20. #define    ELSE    271
  21. #define    WHILE    272
  22. #define    DO    273
  23. #define    FOR    274
  24. #define    SWITCH    275
  25. #define    CASE    276
  26. #define    DEFAULT    277
  27. #define    BREAK    278
  28. #define    CONTINUE    279
  29. #define    RETURN    280
  30. #define    GOTO    281
  31. #define    ASM_KEYWORD    282
  32. #define    TYPEOF    283
  33. #define    ALIGNOF    284
  34. #define    ATTRIBUTE    285
  35. #define    EXTENSION    286
  36. #define    LABEL    287
  37. #define    REALPART    288
  38. #define    IMAGPART    289
  39. #define    ASSIGN    290
  40. #define    OROR    291
  41. #define    ANDAND    292
  42. #define    EQCOMPARE    293
  43. #define    ARITHCOMPARE    294
  44. #define    LSHIFT    295
  45. #define    RSHIFT    296
  46. #define    UNARY    297
  47. #define    PLUSPLUS    298
  48. #define    MINUSMINUS    299
  49. #define    HYPERUNARY    300
  50. #define    POINTSAT    301
  51. #define    INTERFACE    302
  52. #define    IMPLEMENTATION    303
  53. #define    END    304
  54. #define    SELECTOR    305
  55. #define    DEFS    306
  56. #define    ENCODE    307
  57. #define    CLASSNAME    308
  58. #define    PUBLIC    309
  59. #define    PRIVATE    310
  60. #define    PROTECTED    311
  61. #define    PROTOCOL    312
  62. #define    OBJECTNAME    313
  63. #define    CLASS    314
  64. #define    ALIAS    315
  65. #define    OBJC_STRING    316
  66.  
  67. #line 55 "c-parse.y"
  68.  
  69. #include <stdio.h>
  70. #include <errno.h>
  71. #include <setjmp.h>
  72.  
  73. #include "config.h"
  74. #include "tree.h"
  75. #include "input.h"
  76. #include "c-lex.h"
  77. #include "c-tree.h"
  78. #include "flags.h"
  79.  
  80. #ifdef MULTIBYTE_CHARS
  81. #include <stdlib.h>
  82. #include <locale.h>
  83. #endif
  84.  
  85.  
  86. /* Since parsers are distinct for each language, put the language string
  87.    definition here.  */
  88. char *language_string = "GNU C";
  89.  
  90. #ifndef errno
  91. extern int errno;
  92. #endif
  93.  
  94. void yyerror ();
  95.  
  96. /* Like YYERROR but do call yyerror.  */
  97. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  98.  
  99. /* Cause the `yydebug' variable to be defined.  */
  100. #define YYDEBUG 1
  101.  
  102. #line 92 "c-parse.y"
  103. typedef union {long itype; tree ttype; enum tree_code code;
  104.     char *filename; int lineno; } YYSTYPE;
  105. #line 204 "c-parse.y"
  106.  
  107. /* Number of statements (loosely speaking) seen so far.  */
  108. static int stmt_count;
  109.  
  110. /* Input file and line number of the end of the body of last simple_if;
  111.    used by the stmt-rule immediately after simple_if returns.  */
  112. static char *if_stmt_file;
  113. static int if_stmt_line;
  114.  
  115. /* List of types and structure classes of the current declaration.  */
  116. static tree current_declspecs;
  117. static tree prefix_attributes = NULL_TREE;
  118.  
  119. /* Stack of saved values of current_declspecs and prefix_attributes.  */
  120. static tree declspec_stack;
  121.  
  122. /* 1 if we explained undeclared var errors.  */
  123. static int undeclared_variable_notice;
  124.  
  125.  
  126. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  127.  
  128. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  129. extern void yyprint ();
  130.  
  131. #ifndef YYLTYPE
  132. typedef
  133.   struct yyltype
  134.     {
  135.       int timestamp;
  136.       int first_line;
  137.       int first_column;
  138.       int last_line;
  139.       int last_column;
  140.       char *text;
  141.    }
  142.   yyltype;
  143.  
  144. #define YYLTYPE yyltype
  145. #endif
  146.  
  147. #include <stdio.h>
  148.  
  149. #ifndef __cplusplus
  150. #ifndef __STDC__
  151. #define const
  152. #endif
  153. #endif
  154.  
  155.  
  156.  
  157. #define    YYFINAL        657
  158. #define    YYFLAG        -32768
  159. #define    YYNTBASE    84
  160.  
  161. #define YYTRANSLATE(x) ((unsigned)(x) <= 316 ? yytranslate[x] : 227)
  162.  
  163. static const char yytranslate[] = {     0,
  164.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  165.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  166.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  167.      2,     2,    80,     2,     2,     2,    52,    43,     2,    59,
  168.     76,    50,    48,    81,    49,    58,    51,     2,     2,     2,
  169.      2,     2,     2,     2,     2,     2,     2,    38,    77,     2,
  170.     36,     2,    37,     2,     2,     2,     2,     2,     2,     2,
  171.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  172.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  173.     60,     2,    83,    42,     2,     2,     2,     2,     2,     2,
  174.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  175.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  176.      2,     2,    82,    41,    78,    79,     2,     2,     2,     2,
  177.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  178.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  179.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  180.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  181.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  182.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  183.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  184.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  185.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  186.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  187.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  188.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  189.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  190.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  191.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  192.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  193.     39,    40,    44,    45,    46,    47,    53,    54,    55,    56,
  194.     57,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  195.     70,    71,    72,    73,    74,    75
  196. };
  197.  
  198. #if YYDEBUG != 0
  199. static const short yyprhs[] = {     0,
  200.      0,     1,     3,     4,     7,     8,    12,    14,    16,    22,
  201.     26,    31,    36,    39,    42,    45,    48,    50,    51,    52,
  202.     60,    65,    66,    67,    75,    80,    81,    82,    89,    93,
  203.     95,    97,    99,   101,   103,   105,   107,   109,   111,   113,
  204.    114,   116,   118,   122,   124,   127,   128,   132,   135,   138,
  205.    141,   146,   149,   154,   157,   160,   162,   167,   168,   176,
  206.    178,   182,   186,   190,   194,   198,   202,   206,   210,   214,
  207.    218,   222,   226,   230,   234,   240,   244,   248,   250,   252,
  208.    254,   258,   262,   263,   268,   273,   278,   282,   286,   289,
  209.    292,   294,   297,   298,   300,   303,   307,   309,   311,   314,
  210.    317,   322,   327,   330,   333,   337,   339,   341,   344,   347,
  211.    348,   349,   354,   359,   363,   367,   370,   373,   376,   380,
  212.    381,   384,   387,   389,   391,   394,   397,   400,   404,   405,
  213.    408,   410,   412,   414,   419,   424,   426,   428,   430,   432,
  214.    436,   438,   442,   443,   448,   449,   456,   460,   461,   468,
  215.    472,   473,   475,   477,   480,   487,   489,   493,   494,   496,
  216.    501,   508,   513,   515,   517,   519,   521,   523,   524,   529,
  217.    531,   532,   535,   537,   541,   543,   544,   549,   551,   552,
  218.    561,   562,   569,   570,   576,   577,   582,   583,   589,   590,
  219.    591,   597,   598,   599,   605,   607,   609,   613,   617,   622,
  220.    626,   630,   634,   636,   640,   645,   649,   653,   657,   659,
  221.    663,   667,   671,   676,   680,   684,   686,   687,   695,   701,
  222.    704,   705,   713,   719,   722,   723,   732,   733,   741,   744,
  223.    745,   747,   748,   750,   752,   755,   756,   760,   763,   767,
  224.    769,   773,   775,   777,   779,   783,   788,   795,   801,   803,
  225.    807,   809,   811,   815,   818,   821,   822,   824,   826,   829,
  226.    830,   833,   837,   841,   844,   848,   853,   857,   860,   864,
  227.    867,   871,   873,   876,   879,   880,   882,   885,   886,   887,
  228.    889,   891,   894,   898,   900,   903,   906,   913,   919,   925,
  229.    928,   931,   936,   937,   942,   943,   944,   948,   953,   957,
  230.    959,   961,   963,   965,   968,   969,   974,   976,   980,   981,
  231.    982,   990,   996,   999,  1000,  1001,  1002,  1015,  1016,  1023,
  232.   1026,  1029,  1032,  1036,  1043,  1052,  1063,  1076,  1080,  1085,
  233.   1087,  1089,  1090,  1097,  1101,  1107,  1110,  1113,  1114,  1116,
  234.   1117,  1119,  1120,  1122,  1124,  1128,  1133,  1135,  1139,  1140,
  235.   1143,  1146,  1147,  1152,  1155,  1156,  1158,  1160,  1164,  1166,
  236.   1170,  1175,  1180,  1185,  1190,  1195,  1196,  1199,  1201,  1204,
  237.   1206,  1210,  1212
  238. };
  239.  
  240. static const short yyrhs[] = {    -1,
  241.     85,     0,     0,    86,    88,     0,     0,    85,    87,    88,
  242.      0,    90,     0,    89,     0,    27,    59,    99,    76,    77,
  243.      0,   116,   127,    77,     0,   121,   116,   127,    77,     0,
  244.    119,   116,   126,    77,     0,   121,    77,     0,   119,    77,
  245.      0,     1,    77,     0,     1,    78,     0,    77,     0,     0,
  246.      0,   119,   116,   156,    91,   110,    92,   186,     0,   119,
  247.    116,   156,     1,     0,     0,     0,   121,   116,   159,    93,
  248.    110,    94,   186,     0,   121,   116,   159,     1,     0,     0,
  249.      0,   116,   159,    95,   110,    96,   186,     0,   116,   159,
  250.      1,     0,     3,     0,     4,     0,    43,     0,    49,     0,
  251.     48,     0,    54,     0,    55,     0,    79,     0,    80,     0,
  252.    101,     0,     0,   101,     0,   106,     0,   101,    81,   106,
  253.      0,   107,     0,    50,   104,     0,     0,    31,   103,   104,
  254.      0,    98,   104,     0,    40,    97,     0,    11,   102,     0,
  255.     11,    59,   174,    76,     0,    29,   102,     0,    29,    59,
  256.    174,    76,     0,    33,   104,     0,    34,   104,     0,   102,
  257.      0,    59,   174,    76,   104,     0,     0,    59,   174,    76,
  258.     82,   105,   141,    78,     0,   104,     0,   106,    48,   106,
  259.      0,   106,    49,   106,     0,   106,    50,   106,     0,   106,
  260.     51,   106,     0,   106,    52,   106,     0,   106,    46,   106,
  261.      0,   106,    47,   106,     0,   106,    45,   106,     0,   106,
  262.     44,   106,     0,   106,    43,   106,     0,   106,    41,   106,
  263.      0,   106,    42,   106,     0,   106,    40,   106,     0,   106,
  264.     39,   106,     0,   106,    37,   210,    38,   106,     0,   106,
  265.     36,   106,     0,   106,    35,   106,     0,     3,     0,     8,
  266.      0,   109,     0,    59,    99,    76,     0,    59,     1,    76,
  267.      0,     0,    59,   108,   187,    76,     0,   107,    59,   100,
  268.     76,     0,   107,    60,    99,    83,     0,   107,    58,    97,
  269.      0,   107,    57,    97,     0,   107,    54,     0,   107,    55,
  270.      0,     9,     0,   109,     9,     0,     0,   112,     0,   112,
  271.     10,     0,   192,   193,   113,     0,   111,     0,   181,     0,
  272.    112,   111,     0,   111,   181,     0,   119,   116,   126,    77,
  273.      0,   121,   116,   127,    77,     0,   119,    77,     0,   121,
  274.     77,     0,   192,   193,   118,     0,   114,     0,   181,     0,
  275.    115,   114,     0,   114,   181,     0,     0,     0,   119,   116,
  276.    126,    77,     0,   121,   116,   127,    77,     0,   119,   116,
  277.    150,     0,   121,   116,   153,     0,   119,    77,     0,   121,
  278.     77,     0,   124,   120,     0,   121,   124,   120,     0,     0,
  279.    120,   125,     0,   120,     5,     0,     7,     0,     5,     0,
  280.    121,     7,     0,   121,     5,     0,   124,   123,     0,   176,
  281.    124,   123,     0,     0,   123,   125,     0,     6,     0,   160,
  282.      0,     4,     0,    28,    59,    99,    76,     0,    28,    59,
  283.    174,    76,     0,     6,     0,     7,     0,   160,     0,   129,
  284.      0,   126,    81,   129,     0,   131,     0,   127,    81,   129,
  285.      0,     0,    27,    59,   109,    76,     0,     0,   156,   128,
  286.    133,    36,   130,   139,     0,   156,   128,   133,     0,     0,
  287.    159,   128,   133,    36,   132,   139,     0,   159,   128,   133,
  288.      0,     0,   134,     0,   135,     0,   134,   135,     0,    30,
  289.     59,    59,   136,    76,    76,     0,   137,     0,   136,    81,
  290.    137,     0,     0,   138,     0,   138,    59,     3,    76,     0,
  291.    138,    59,     3,    81,   101,    76,     0,   138,    59,   100,
  292.     76,     0,    97,     0,     5,     0,     6,     0,     7,     0,
  293.    106,     0,     0,    82,   140,   141,    78,     0,     1,     0,
  294.      0,   142,   165,     0,   143,     0,   142,    81,   143,     0,
  295.    106,     0,     0,    82,   144,   141,    78,     0,     1,     0,
  296.      0,    60,   106,    10,   106,    83,    36,   145,   143,     0,
  297.      0,    60,   106,    83,    36,   146,   143,     0,     0,    60,
  298.    106,    83,   147,   143,     0,     0,    97,    38,   148,   143,
  299.      0,     0,    58,    97,    36,   149,   143,     0,     0,     0,
  300.    156,   151,   110,   152,   187,     0,     0,     0,   159,   154,
  301.    110,   155,   187,     0,   157,     0,   159,     0,    59,   157,
  302.     76,     0,   157,    59,   222,     0,   157,    60,    99,    83,
  303.      0,   157,    60,    83,     0,    50,   177,   157,     0,   134,
  304.    117,   157,     0,     4,     0,   158,    59,   222,     0,   158,
  305.     60,    99,    83,     0,   158,    60,    83,     0,    50,   177,
  306.    158,     0,   134,   117,   158,     0,     4,     0,   159,    59,
  307.    222,     0,    59,   159,    76,     0,    50,   177,   159,     0,
  308.    159,    60,    99,    83,     0,   159,    60,    83,     0,   134,
  309.    117,   159,     0,     3,     0,     0,    13,    97,    82,   161,
  310.    167,    78,   133,     0,    13,    82,   167,    78,   133,     0,
  311.     13,    97,     0,     0,    14,    97,    82,   162,   167,    78,
  312.    133,     0,    14,    82,   167,    78,   133,     0,    14,    97,
  313.      0,     0,    12,    97,    82,   163,   172,   166,    78,   133,
  314.      0,     0,    12,    82,   164,   172,   166,    78,   133,     0,
  315.     12,    97,     0,     0,    81,     0,     0,    81,     0,   168,
  316.      0,   168,   169,     0,     0,   168,   169,    77,     0,   168,
  317.     77,     0,   122,   116,   170,     0,   122,     0,   176,   116,
  318.    170,     0,   176,     0,     1,     0,   171,     0,   170,    81,
  319.    171,     0,   192,   193,   156,   133,     0,   192,   193,   156,
  320.     38,   106,   133,     0,   192,   193,    38,   106,   133,     0,
  321.    173,     0,   172,    81,   173,     0,     1,     0,    97,     0,
  322.     97,    36,   106,     0,   122,   175,     0,   176,   175,     0,
  323.      0,   178,     0,     7,     0,   176,     7,     0,     0,   177,
  324.      7,     0,    59,   178,    76,     0,    50,   177,   178,     0,
  325.     50,   177,     0,   178,    59,   215,     0,   178,    60,    99,
  326.     83,     0,   178,    60,    83,     0,    59,   215,     0,    60,
  327.     99,    83,     0,    60,    83,     0,   134,   117,   178,     0,
  328.    195,     0,   179,   195,     0,   179,   181,     0,     0,   179,
  329.      0,     1,    77,     0,     0,     0,   184,     0,   185,     0,
  330.    184,   185,     0,    32,   226,    77,     0,   187,     0,     1,
  331.    187,     0,    82,    78,     0,    82,   182,   183,   115,   180,
  332.     78,     0,    82,   182,   183,     1,    78,     0,    82,   182,
  333.    183,   179,    78,     0,   189,   194,     0,   189,     1,     0,
  334.     15,    59,    99,    76,     0,     0,    18,   191,   194,    17,
  335.      0,     0,     0,   192,   193,   197,     0,   192,   193,   208,
  336.    194,     0,   192,   193,   196,     0,   197,     0,   208,     0,
  337.    187,     0,   205,     0,    99,    77,     0,     0,   188,    16,
  338.    198,   194,     0,   188,     0,   188,    16,     1,     0,     0,
  339.      0,    17,   199,    59,    99,    76,   200,   194,     0,   190,
  340.     59,    99,    76,    77,     0,   190,     1,     0,     0,     0,
  341.      0,    19,    59,   210,    77,   201,   210,    77,   202,   210,
  342.     76,   203,   194,     0,     0,    20,    59,    99,    76,   204,
  343.    194,     0,    23,    77,     0,    24,    77,     0,    25,    77,
  344.      0,    25,    99,    77,     0,    27,   209,    59,    99,    76,
  345.     77,     0,    27,   209,    59,    99,    38,   211,    76,    77,
  346.      0,    27,   209,    59,    99,    38,   211,    38,   211,    76,
  347.     77,     0,    27,   209,    59,    99,    38,   211,    38,   211,
  348.     38,   214,    76,    77,     0,    26,    97,    77,     0,    26,
  349.     50,    99,    77,     0,    77,     0,   206,     0,     0,    19,
  350.     59,   107,    76,   207,   194,     0,    21,   106,    38,     0,
  351.     21,   106,    10,   106,    38,     0,    22,    38,     0,    97,
  352.     38,     0,     0,     7,     0,     0,    99,     0,     0,   212,
  353.      0,   213,     0,   212,    81,   213,     0,     9,    59,    99,
  354.     76,     0,   109,     0,   214,    81,   109,     0,     0,   216,
  355.    217,     0,   219,    76,     0,     0,   220,    77,   218,   217,
  356.      0,     1,    76,     0,     0,    10,     0,   220,     0,   220,
  357.     81,    10,     0,   221,     0,   220,    81,   221,     0,   119,
  358.    116,   158,   133,     0,   119,   116,   159,   133,     0,   119,
  359.    116,   175,   133,     0,   121,   116,   159,   133,     0,   121,
  360.    116,   175,   133,     0,     0,   223,   224,     0,   217,     0,
  361.    225,    76,     0,     3,     0,   225,    81,     3,     0,    97,
  362.      0,   226,    81,    97,     0
  363. };
  364.  
  365. #endif
  366.  
  367. #if YYDEBUG != 0
  368. static const short yyrline[] = { 0,
  369.    231,   236,   250,   252,   252,   253,   255,   257,   258,   268,
  370.    279,   284,   289,   291,   293,   294,   295,   300,   307,   309,
  371.    314,   319,   325,   327,   332,   337,   343,   345,   350,   357,
  372.    359,   362,   364,   366,   368,   370,   372,   374,   378,   382,
  373.    385,   388,   391,   395,   397,   400,   403,   406,   410,   438,
  374.    443,   445,   447,   449,   451,   455,   457,   460,   464,   491,
  375.    493,   495,   497,   499,   501,   503,   505,   507,   509,   511,
  376.    513,   515,   517,   519,   521,   523,   526,   532,   631,   632,
  377.    634,   640,   642,   656,   679,   681,   683,   687,   693,   695,
  378.    700,   702,   707,   709,   710,   720,   725,   727,   728,   729,
  379.    732,   738,   743,   746,   754,   759,   761,   762,   763,   770,
  380.    780,   784,   790,   795,   800,   805,   807,   815,   818,   822,
  381.    824,   826,   837,   841,   843,   846,   859,   862,   866,   868,
  382.    876,   877,   878,   882,   884,   890,   891,   892,   895,   897,
  383.    900,   902,   905,   908,   914,   921,   923,   930,   937,   940,
  384.    947,   950,   954,   957,   961,   966,   969,   973,   976,   978,
  385.    980,   982,   989,   991,   992,   993,   998,  1000,  1005,  1013,
  386.   1018,  1022,  1025,  1027,  1032,  1035,  1037,  1039,  1043,  1046,
  387.   1046,  1049,  1049,  1052,  1052,  1055,  1055,  1058,  1060,  1071,
  388.   1079,  1083,  1094,  1102,  1109,  1111,  1116,  1119,  1124,  1126,
  389.   1128,  1130,  1132,  1140,  1146,  1148,  1150,  1152,  1154,  1160,
  390.   1166,  1168,  1170,  1172,  1174,  1176,  1179,  1184,  1186,  1190,
  391.   1192,  1194,  1196,  1200,  1202,  1205,  1208,  1211,  1214,  1218,
  392.   1220,  1223,  1225,  1229,  1232,  1237,  1239,  1241,  1255,  1262,
  393.   1267,  1273,  1278,  1282,  1284,  1288,  1292,  1296,  1306,  1308,
  394.   1310,  1315,  1318,  1322,  1325,  1329,  1332,  1335,  1338,  1342,
  395.   1345,  1349,  1353,  1355,  1357,  1359,  1361,  1363,  1365,  1367,
  396.   1369,  1377,  1379,  1380,  1383,  1385,  1388,  1391,  1402,  1404,
  397.   1409,  1411,  1414,  1428,  1431,  1434,  1436,  1444,  1452,  1463,
  398.   1468,  1471,  1484,  1492,  1496,  1500,  1504,  1510,  1514,  1519,
  399.   1521,  1532,  1535,  1536,  1553,  1558,  1561,  1573,  1575,  1585,
  400.   1595,  1596,  1604,  1607,  1619,  1623,  1640,  1650,  1659,  1664,
  401.   1669,  1674,  1678,  1682,  1693,  1700,  1707,  1714,  1725,  1729,
  402.   1732,  1737,  1760,  1794,  1819,  1848,  1863,  1874,  1878,  1882,
  403.   1885,  1890,  1892,  1895,  1897,  1901,  1906,  1909,  1915,  1920,
  404.   1925,  1927,  1936,  1937,  1943,  1945,  1955,  1957,  1961,  1964,
  405.   1970,  1980,  1989,  1998,  2008,  2022,  2027,  2032,  2034,  2043,
  406.   2046,  2051,  2054
  407. };
  408.  
  409. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  410. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  411. "ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
  412. "BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ATTRIBUTE",
  413. "EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'","OROR",
  414. "ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT","'+'",
  415. "'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
  416. "'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
  417. "CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
  418. "OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
  419. "@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
  420. "unop","expr","exprlist","nonnull_exprlist","unary_expr","@9","cast_expr","@10",
  421. "expr_no_commas","primary","@11","string","xdecls","lineno_datadecl","datadecls",
  422. "datadecl","lineno_decl","decls","setspecs","setattrs","decl","typed_declspecs",
  423. "reserved_declspecs","declmods","typed_typespecs","reserved_typespecquals","typespec",
  424. "typespecqual_reserved","initdecls","notype_initdecls","maybeasm","initdcl",
  425. "@12","notype_initdcl","@13","maybe_attribute","attributes","attribute","attribute_list",
  426. "attrib","any_word","init","@14","initlist_maybe_comma","initlist1","initelt",
  427. "@15","@16","@17","@18","@19","@20","nested_function","@21","@22","notype_nested_function",
  428. "@23","@24","declarator","after_type_declarator","parm_declarator","notype_declarator",
  429. "structsp","@25","@26","@27","@28","maybecomma","maybecomma_warn","component_decl_list",
  430. "component_decl_list2","component_decl","components","component_declarator",
  431. "enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
  432. "absdcl1","stmts","xstmts","errstmt","pushlevel","maybe_label_decls","label_decls",
  433. "label_decl","compstmt_or_error","compstmt","simple_if","if_prefix","do_stmt_start",
  434. "@29","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
  435. "stmt_or_label","stmt","@30","@31","@32","@33","@34","@35","@36","all_iter_stmt",
  436. "all_iter_stmt_simple","@37","label","maybe_type_qual","xexpr","asm_operands",
  437. "nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@38","parmlist_1",
  438. "@39","parmlist_2","parms","parm","parmlist_or_identifiers","@40","parmlist_or_identifiers_1",
  439. "identifiers","identifiers_or_typenames",""
  440. };
  441. #endif
  442.  
  443. static const short yyr1[] = {     0,
  444.     84,    84,    86,    85,    87,    85,    88,    88,    88,    89,
  445.     89,    89,    89,    89,    89,    89,    89,    91,    92,    90,
  446.     90,    93,    94,    90,    90,    95,    96,    90,    90,    97,
  447.     97,    98,    98,    98,    98,    98,    98,    98,    99,   100,
  448.    100,   101,   101,   102,   102,   103,   102,   102,   102,   102,
  449.    102,   102,   102,   102,   102,   104,   104,   105,   104,   106,
  450.    106,   106,   106,   106,   106,   106,   106,   106,   106,   106,
  451.    106,   106,   106,   106,   106,   106,   106,   107,   107,   107,
  452.    107,   107,   108,   107,   107,   107,   107,   107,   107,   107,
  453.    109,   109,   110,   110,   110,   111,   112,   112,   112,   112,
  454.    113,   113,   113,   113,   114,   115,   115,   115,   115,   116,
  455.    117,   118,   118,   118,   118,   118,   118,   119,   119,   120,
  456.    120,   120,   121,   121,   121,   121,   122,   122,   123,   123,
  457.    124,   124,   124,   124,   124,   125,   125,   125,   126,   126,
  458.    127,   127,   128,   128,   130,   129,   129,   132,   131,   131,
  459.    133,   133,   134,   134,   135,   136,   136,   137,   137,   137,
  460.    137,   137,   138,   138,   138,   138,   139,   140,   139,   139,
  461.    141,   141,   142,   142,   143,   144,   143,   143,   145,   143,
  462.    146,   143,   147,   143,   148,   143,   149,   143,   151,   152,
  463.    150,   154,   155,   153,   156,   156,   157,   157,   157,   157,
  464.    157,   157,   157,   158,   158,   158,   158,   158,   158,   159,
  465.    159,   159,   159,   159,   159,   159,   161,   160,   160,   160,
  466.    162,   160,   160,   160,   163,   160,   164,   160,   160,   165,
  467.    165,   166,   166,   167,   167,   168,   168,   168,   169,   169,
  468.    169,   169,   169,   170,   170,   171,   171,   171,   172,   172,
  469.    172,   173,   173,   174,   174,   175,   175,   176,   176,   177,
  470.    177,   178,   178,   178,   178,   178,   178,   178,   178,   178,
  471.    178,   179,   179,   179,   180,   180,   181,   182,   183,   183,
  472.    184,   184,   185,   186,   186,   187,   187,   187,   187,   188,
  473.    188,   189,   191,   190,   192,   193,   194,   194,   195,   196,
  474.    196,   197,   197,   197,   198,   197,   197,   197,   199,   200,
  475.    197,   197,   197,   201,   202,   203,   197,   204,   197,   197,
  476.    197,   197,   197,   197,   197,   197,   197,   197,   197,   197,
  477.    205,   207,   206,   208,   208,   208,   208,   209,   209,   210,
  478.    210,   211,   211,   212,   212,   213,   214,   214,   216,   215,
  479.    217,   218,   217,   217,   219,   219,   219,   219,   220,   220,
  480.    221,   221,   221,   221,   221,   223,   222,   224,   224,   225,
  481.    225,   226,   226
  482. };
  483.  
  484. static const short yyr2[] = {     0,
  485.      0,     1,     0,     2,     0,     3,     1,     1,     5,     3,
  486.      4,     4,     2,     2,     2,     2,     1,     0,     0,     7,
  487.      4,     0,     0,     7,     4,     0,     0,     6,     3,     1,
  488.      1,     1,     1,     1,     1,     1,     1,     1,     1,     0,
  489.      1,     1,     3,     1,     2,     0,     3,     2,     2,     2,
  490.      4,     2,     4,     2,     2,     1,     4,     0,     7,     1,
  491.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  492.      3,     3,     3,     3,     5,     3,     3,     1,     1,     1,
  493.      3,     3,     0,     4,     4,     4,     3,     3,     2,     2,
  494.      1,     2,     0,     1,     2,     3,     1,     1,     2,     2,
  495.      4,     4,     2,     2,     3,     1,     1,     2,     2,     0,
  496.      0,     4,     4,     3,     3,     2,     2,     2,     3,     0,
  497.      2,     2,     1,     1,     2,     2,     2,     3,     0,     2,
  498.      1,     1,     1,     4,     4,     1,     1,     1,     1,     3,
  499.      1,     3,     0,     4,     0,     6,     3,     0,     6,     3,
  500.      0,     1,     1,     2,     6,     1,     3,     0,     1,     4,
  501.      6,     4,     1,     1,     1,     1,     1,     0,     4,     1,
  502.      0,     2,     1,     3,     1,     0,     4,     1,     0,     8,
  503.      0,     6,     0,     5,     0,     4,     0,     5,     0,     0,
  504.      5,     0,     0,     5,     1,     1,     3,     3,     4,     3,
  505.      3,     3,     1,     3,     4,     3,     3,     3,     1,     3,
  506.      3,     3,     4,     3,     3,     1,     0,     7,     5,     2,
  507.      0,     7,     5,     2,     0,     8,     0,     7,     2,     0,
  508.      1,     0,     1,     1,     2,     0,     3,     2,     3,     1,
  509.      3,     1,     1,     1,     3,     4,     6,     5,     1,     3,
  510.      1,     1,     3,     2,     2,     0,     1,     1,     2,     0,
  511.      2,     3,     3,     2,     3,     4,     3,     2,     3,     2,
  512.      3,     1,     2,     2,     0,     1,     2,     0,     0,     1,
  513.      1,     2,     3,     1,     2,     2,     6,     5,     5,     2,
  514.      2,     4,     0,     4,     0,     0,     3,     4,     3,     1,
  515.      1,     1,     1,     2,     0,     4,     1,     3,     0,     0,
  516.      7,     5,     2,     0,     0,     0,    12,     0,     6,     2,
  517.      2,     2,     3,     6,     8,    10,    12,     3,     4,     1,
  518.      1,     0,     6,     3,     5,     2,     2,     0,     1,     0,
  519.      1,     0,     1,     1,     3,     4,     1,     3,     0,     2,
  520.      2,     0,     4,     2,     0,     1,     1,     3,     1,     3,
  521.      4,     4,     4,     4,     4,     0,     2,     1,     2,     1,
  522.      3,     1,     3
  523. };
  524.  
  525. static const short yydefact[] = {     3,
  526.      5,     0,     0,     0,   133,   124,   131,   123,     0,     0,
  527.      0,     0,     0,    17,     4,     8,     7,     0,   110,   110,
  528.    120,   132,     6,    15,    16,    30,    31,   227,   229,   236,
  529.    220,   236,   224,     0,     0,   216,     0,   260,     0,     0,
  530.    141,   111,   153,     0,    14,     0,   126,   125,    13,     0,
  531.    120,   118,     0,   225,     0,     0,   217,     0,   221,    78,
  532.     79,    91,     0,     0,    46,     0,     0,     0,    32,    34,
  533.     33,     0,    35,    36,     0,    37,    38,     0,     0,    39,
  534.     56,    60,    42,    44,    80,   258,     0,   256,   129,     0,
  535.    256,     0,     0,     0,    10,     0,     0,   154,    29,     0,
  536.    366,     0,     0,   151,   203,   260,     0,     0,   139,   111,
  537.      0,   195,   196,     0,     0,   119,   122,   136,   137,   121,
  538.    138,   251,   252,   232,   249,     0,   151,   243,   238,   110,
  539.    235,   110,   236,   151,   236,     0,    50,     0,    52,     0,
  540.     54,    55,    49,    45,     0,     0,     0,     0,    48,     0,
  541.      0,     0,     0,   340,     0,     0,     0,     0,     0,     0,
  542.      0,     0,     0,     0,     0,     0,     0,     0,    89,    90,
  543.      0,     0,    40,     0,    92,   134,   260,   349,     0,   111,
  544.    254,   257,   127,   135,   259,   129,   255,   158,   261,   212,
  545.    211,   142,   143,   215,     0,   210,     0,   214,     0,     0,
  546.     27,     0,   295,    98,   296,   150,   152,     0,     0,    12,
  547.      0,     0,    21,     0,   151,   366,     0,    11,    25,     0,
  548.      0,   233,     0,   232,   219,   295,   237,   295,     0,   223,
  549.      0,     0,     0,    47,    82,    81,   278,     0,     0,     9,
  550.     43,    77,    76,   341,     0,    74,    73,    71,    72,    70,
  551.     69,    68,    66,    67,    61,    62,    63,    64,    65,    88,
  552.     87,     0,    41,     0,   264,     0,   268,     0,   270,     0,
  553.      0,   349,     0,   130,   128,   164,   165,   166,   163,     0,
  554.    156,   159,     0,     0,   370,   356,   110,   110,   368,     0,
  555.    357,   359,   367,     0,   213,   277,     0,   100,    95,    99,
  556.      0,   148,   201,   197,   140,   202,    19,   147,   198,   200,
  557.      0,    23,   253,   250,   151,     0,   239,   244,   296,   241,
  558.    151,   151,    51,    53,   286,   279,    84,    58,    57,     0,
  559.     85,    86,   263,   262,   350,   269,   271,   265,   267,     0,
  560.      0,   158,    40,   144,   354,   256,   256,   351,   352,     0,
  561.    369,     0,     0,    28,   284,    96,   110,   110,     0,     0,
  562.    145,   199,     0,   228,   151,   295,     0,   218,   222,     0,
  563.      0,   280,   281,     0,    75,   266,   155,   157,    78,     0,
  564.    209,   260,   349,   111,   151,   151,   151,   260,   111,   151,
  565.    151,     0,   358,   360,   371,   285,   103,     0,   104,     0,
  566.    170,   168,   167,   149,    20,     0,    24,   226,   245,     0,
  567.    151,   372,     0,     0,     0,   295,     0,   107,   296,   272,
  568.    282,   178,    78,     0,     0,   176,     0,   175,     0,   230,
  569.    173,   160,     0,   162,   264,     0,   366,     0,   361,   362,
  570.    363,   264,     0,   364,   365,   353,     0,     0,   143,     0,
  571.    146,   151,     0,   246,   283,     0,   288,   109,   108,     0,
  572.      0,   289,   274,   296,   273,     0,     0,     0,     0,   185,
  573.     59,     0,   172,     0,   207,   208,   204,   206,     0,   101,
  574.    102,     0,   248,   151,   373,   287,     0,   133,     0,   309,
  575.    293,     0,     0,     0,     0,     0,     0,     0,     0,   338,
  576.    330,     0,     0,   105,   110,   110,   302,   307,     0,     0,
  577.    299,   300,   303,   331,   301,   187,     0,   183,     0,     0,
  578.    174,   161,   205,   169,   247,     0,     0,   295,   340,     0,
  579.      0,   336,   320,   321,   322,     0,     0,     0,   339,     0,
  580.    337,   304,   116,     0,   117,     0,     0,   291,   296,   290,
  581.    313,     0,     0,     0,   181,     0,   177,   186,     0,     0,
  582.      0,    44,     0,     0,     0,   334,   323,     0,   328,     0,
  583.      0,   114,   189,     0,   115,   192,   308,   295,     0,     0,
  584.    188,     0,     0,   184,   292,     0,   294,   332,   314,   318,
  585.      0,   329,     0,   112,     0,   113,     0,   306,   297,   295,
  586.      0,   179,   182,   310,   295,   340,   295,   335,   342,     0,
  587.    190,   193,   298,   312,     0,   295,   333,     0,   319,     0,
  588.      0,   343,   344,   324,     0,     0,   180,   311,   315,     0,
  589.    342,     0,     0,   191,   194,   340,     0,     0,   325,   345,
  590.      0,   346,     0,     0,   316,   347,     0,   326,   295,     0,
  591.      0,   317,   327,   348,     0,     0,     0
  592. };
  593.  
  594. static const short yydefgoto[] = {   655,
  595.      1,     2,     3,    15,    16,    17,   214,   360,   220,   363,
  596.    103,   297,   427,    78,   244,   262,    80,    81,   140,    82,
  597.    374,    83,    84,   147,    85,   201,   202,   203,   356,   415,
  598.    416,    18,    97,   504,   287,    52,   288,    88,   183,    21,
  599.    120,   108,    40,   104,   109,   406,    41,   359,   206,   207,
  600.     43,   280,   281,   282,   404,   450,   429,   430,   431,   469,
  601.    615,   583,   556,   520,   553,   572,   595,   625,   575,   597,
  602.    626,   193,   112,   385,   113,    22,   133,   135,   126,    53,
  603.    473,   223,    55,    56,   131,   317,   318,   124,   125,    90,
  604.    181,    91,    93,   182,   417,   461,   204,   326,   371,   372,
  605.    373,   354,   355,   508,   509,   510,   528,   549,   301,   550,
  606.    420,   511,   512,   578,   527,   616,   606,   636,   649,   607,
  607.    513,   514,   605,   515,   540,   245,   621,   622,   623,   647,
  608.    267,   268,   289,   392,   290,   291,   292,   196,   197,   293,
  609.    294,   413
  610. };
  611.  
  612. static const short yypact[] = {    52,
  613.     79,  1977,  1977,    38,-32768,-32768,-32768,-32768,    47,    57,
  614.     81,     7,    50,-32768,-32768,-32768,-32768,   161,   104,   858,
  615. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,   111,-32768,
  616.    127,-32768,   156,  1839,  1779,-32768,   186,-32768,   161,   109,
  617. -32768,   185,-32768,  1284,-32768,   865,-32768,-32768,-32768,   161,
  618. -32768,   758,   374,-32768,   172,   367,-32768,   180,-32768,-32768,
  619. -32768,-32768,  1866,  1893,-32768,  1839,  1839,   232,-32768,-32768,
  620. -32768,  1839,-32768,-32768,  1096,-32768,-32768,  1839,   192,   194,
  621. -32768,-32768,  2065,  1026,   253,-32768,   205,   295,-32768,   214,
  622.   1650,   242,   256,   112,-32768,   865,   161,-32768,-32768,   254,
  623. -32768,   558,   304,   185,-32768,-32768,   865,   133,-32768,   185,
  624.   1363,   346,   351,   243,  1344,   758,-32768,-32768,-32768,-32768,
  625. -32768,-32768,   287,   247,-32768,   374,   185,-32768,-32768,   353,
  626.    258,   410,-32768,   185,-32768,  1096,-32768,  1096,-32768,  1839,
  627. -32768,-32768,-32768,-32768,   265,   282,   278,   294,-32768,   306,
  628.   1839,  1839,  1839,  1839,  1839,  1839,  1839,  1839,  1839,  1839,
  629.   1839,  1839,  1839,  1839,  1839,  1839,  1839,  1839,-32768,-32768,
  630.    232,   232,  1839,  1839,-32768,-32768,-32768,   295,  1398,   185,
  631. -32768,   402,   551,-32768,-32768,-32768,-32768,   537,-32768,   351,
  632. -32768,-32768,   345,   351,   376,-32768,   701,-32768,   308,   320,
  633. -32768,   260,    45,-32768,-32768,   364,   185,   625,   181,-32768,
  634.    865,   865,-32768,   304,   185,-32768,  1425,-32768,-32768,   304,
  635.   1839,   232,   324,   247,-32768,-32768,-32768,-32768,   337,-32768,
  636.    343,   358,   361,-32768,-32768,-32768,   373,   381,  1722,-32768,
  637.   2065,  2065,  2065,-32768,   421,  2094,  1451,  1368,  1122,  1289,
  638.   1336,  1688,  1063,  1063,   391,   391,-32768,-32768,-32768,-32768,
  639. -32768,   387,   194,   382,   339,   219,-32768,   781,-32768,   386,
  640.    295,-32768,  1480,-32768,   551,-32768,-32768,-32768,-32768,    -3,
  641. -32768,   414,    29,   404,-32768,-32768,-32768,   831,-32768,   406,
  642.    252,-32768,-32768,    30,-32768,-32768,    56,-32768,-32768,-32768,
  643.    991,-32768,   346,-32768,-32768,   346,-32768,   459,-32768,-32768,
  644.    416,-32768,  2065,-32768,   185,   419,   420,-32768,-32768,   420,
  645.    185,   185,-32768,-32768,-32768,   477,-32768,-32768,-32768,  1839,
  646. -32768,-32768,   402,-32768,-32768,-32768,   402,-32768,-32768,   432,
  647.    441,   537,  1920,-32768,-32768,   144,   239,-32768,-32768,   442,
  648. -32768,   519,   278,-32768,-32768,-32768,   450,   938,  1273,    56,
  649. -32768,-32768,    56,-32768,   185,-32768,   754,-32768,-32768,   232,
  650.    719,   477,-32768,   545,  2081,-32768,-32768,-32768,    37,   458,
  651. -32768,-32768,   239,   185,   223,   289,   185,-32768,   185,   289,
  652.    185,   781,-32768,-32768,-32768,-32768,-32768,   865,-32768,   161,
  653. -32768,-32768,  2065,-32768,-32768,  1273,-32768,-32768,-32768,  1839,
  654.     69,-32768,   257,   412,   639,   455,   799,-32768,-32768,-32768,
  655. -32768,-32768,   499,   232,  1839,-32768,   509,  2065,   472,   470,
  656. -32768,-32768,  1839,-32768,   464,   144,-32768,  1507,-32768,-32768,
  657. -32768,   139,   239,-32768,-32768,-32768,   275,   276,    36,   545,
  658. -32768,  2023,  1839,-32768,-32768,   232,-32768,-32768,-32768,   879,
  659.    474,-32768,-32768,-32768,-32768,  1588,   523,  1998,   545,-32768,
  660. -32768,  1153,-32768,    94,   453,   453,-32768,-32768,   479,-32768,
  661. -32768,   490,-32768,  2023,-32768,-32768,  1668,   517,   511,-32768,
  662. -32768,   512,   513,  1839,   539,   498,   503,  1806,   204,   574,
  663. -32768,   544,   507,-32768,   520,  1018,-32768,   586,   959,    64,
  664. -32768,-32768,-32768,-32768,-32768,-32768,  1839,   554,   531,  1213,
  665. -32768,-32768,-32768,-32768,-32768,  1839,   552,-32768,  1839,  1839,
  666.   1532,-32768,-32768,-32768,-32768,   533,  1839,   538,-32768,   555,
  667. -32768,-32768,-32768,   865,-32768,   161,  1039,-32768,-32768,-32768,
  668. -32768,  1839,  1213,  1974,-32768,  1213,-32768,-32768,   540,  1839,
  669.    601,  1083,   543,   550,  1839,-32768,-32768,   553,-32768,  1839,
  670.    311,-32768,   170,   313,-32768,   448,-32768,-32768,  1668,   557,
  671. -32768,   585,  1213,-32768,-32768,   559,-32768,-32768,-32768,-32768,
  672.   2047,-32768,    16,-32768,   304,-32768,   304,-32768,-32768,-32768,
  673.    562,-32768,-32768,-32768,-32768,  1839,-32768,-32768,   627,   592,
  674. -32768,-32768,-32768,-32768,  1213,-32768,-32768,   594,-32768,   575,
  675.     18,   593,-32768,-32768,   278,   278,-32768,-32768,-32768,  1839,
  676.    627,   599,   627,-32768,-32768,  1839,   602,    21,-32768,-32768,
  677.    604,-32768,   376,   600,-32768,   253,    97,-32768,-32768,   606,
  678.    376,-32768,-32768,   253,   685,   686,-32768
  679. };
  680.  
  681. static const short yypgoto[] = {-32768,
  682. -32768,-32768,-32768,   687,-32768,-32768,-32768,-32768,-32768,-32768,
  683. -32768,-32768,    -6,-32768,   -34,   348,  -156,   457,-32768,     4,
  684. -32768,    66,   163,-32768,  -185,  -194,   492,-32768,-32768,   280,
  685. -32768,     5,   -82,-32768,    11,   646,    13,   643,   514,    -8,
  686.   -141,  -367,   -41,   -90,   -56,-32768,-32768,-32768,    22,   -16,
  687.    -23,-32768,   359,-32768,   297,-32768,  -376,-32768,  -403,-32768,
  688. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  689. -32768,   -40,   -54,    96,    -7,   -15,-32768,-32768,-32768,-32768,
  690. -32768,   485,    26,-32768,-32768,   482,   369,   623,   529,   -26,
  691.    -62,   656,   -88,  -139,   338,-32768,  -169,-32768,-32768,-32768,
  692.    383,  -184,  -140,-32768,-32768,-32768,-32768,   -95,  -297,  -464,
  693.   -372,-32768,   177,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  694. -32768,-32768,-32768,   182,-32768,  -485,   129,-32768,   142,-32768,
  695.    494,-32768,  -232,-32768,-32768,-32768,   426,  -181,-32768,-32768,
  696. -32768,-32768
  697. };
  698.  
  699.  
  700. #define    YYLAST        2146
  701.  
  702.  
  703. static const short yytable[] = {    79,
  704.     87,    42,    29,    31,    33,   111,   238,   205,   114,   283,
  705.     44,    51,    19,    19,    20,    20,   263,   208,    98,   307,
  706.    215,   367,    42,    46,    50,   312,    89,   212,   187,   110,
  707.    447,    94,   298,    42,   309,   335,   121,   175,   266,   192,
  708.    146,   274,   115,   563,   465,   -94,   123,    89,   148,    26,
  709.     27,    -1,   209,   609,   299,   631,   353,    58,   643,    26,
  710.     27,   143,   100,   561,   551,    34,    89,   199,   521,   141,
  711.    142,   180,   341,   482,   180,   144,    42,   342,    -2,   110,
  712.     42,   149,   186,    26,    27,   190,    98,   465,   265,   194,
  713.    110,   610,   519,   632,   101,   102,   644,   271,    37,    94,
  714.    121,   146,   215,   146,   344,   351,   453,   205,    35,   232,
  715.    352,   233,   432,   598,    24,    25,   558,   433,   205,   123,
  716.    618,   466,   552,   186,   205,   333,   -94,    89,    28,    89,
  717.    319,   337,   319,   274,   226,   613,   228,   237,    30,   264,
  718.    617,    36,   619,   234,   270,   189,    36,   381,   225,   581,
  719.    641,   628,   584,   303,   305,   230,    98,   306,   229,   446,
  720.    231,   180,    32,    36,   260,   261,   487,   121,    37,   522,
  721.    101,   102,   650,    37,   151,   405,   571,   651,   407,   603,
  722.     45,   279,   311,    98,   652,    95,   263,   191,   388,    96,
  723.     37,   110,    54,   382,   110,   110,   100,   383,   179,  -143,
  724.    190,   418,   383,   179,   194,  -143,    26,    27,    57,   210,
  725.     38,   627,   396,   211,    37,   123,   241,   242,   243,    39,
  726.    246,   247,   248,   249,   250,   251,   252,   253,   254,   255,
  727.    256,   257,   258,   259,    26,    27,   308,    59,   340,   216,
  728.    217,    36,   329,   266,    92,   458,  -143,   463,   180,   127,
  729.   -143,   579,    37,   537,   180,   477,   304,   134,    36,   121,
  730.    200,   175,   189,   -97,   -97,   -97,   -97,   150,    37,   -97,
  731.    319,   -97,   -97,   -97,   151,   419,   474,   272,   273,    51,
  732.    176,   437,   438,   387,   391,    37,   313,   -97,   388,   184,
  733.    463,   346,   347,   435,   334,   333,   337,   383,   179,   442,
  734.    188,   436,   333,   337,   200,    38,   443,  -295,  -295,  -295,
  735.   -295,   357,   195,   358,    39,  -295,  -295,  -295,    37,   218,
  736.    419,   464,   221,    96,    37,   507,   411,   222,   349,   384,
  737.    389,  -295,   350,   455,   227,   279,   364,   456,   386,   390,
  738.    235,   -97,   368,   369,   177,   189,   507,   101,   102,    51,
  739.    110,   480,   481,   178,   179,   211,    96,   236,   448,   237,
  740.     98,   398,   400,   412,   464,    98,   389,   128,    37,   239,
  741.      5,   100,     7,    86,   122,    94,    26,    27,     9,    10,
  742.     11,   110,   240,    42,    62,   -93,   408,   594,   177,   596,
  743.    295,   211,   449,    96,    13,   375,   296,   178,   179,   302,
  744.    611,   315,   612,   479,   216,   217,   439,   440,   441,   101,
  745.    102,   444,   445,     5,   321,     7,   185,   467,   384,   384,
  746.    322,     9,    10,    11,   403,   389,   389,   190,   194,  -240,
  747.   -240,   503,   454,   323,   190,   194,   324,    13,   507,   428,
  748.    166,   167,   168,   129,  -234,     5,     6,     7,     8,   485,
  749.    325,   393,   503,     9,    10,    11,   327,   646,   330,   502,
  750.    272,   273,   331,   536,   332,   654,    36,   381,   336,    13,
  751.    189,   403,   343,   483,   100,   452,   505,  -143,   506,   345,
  752.    502,   348,   215,  -143,   634,   635,  -242,  -242,   296,   457,
  753.    468,   559,   538,    37,   361,   564,   365,    51,   362,   205,
  754.    366,   205,   568,   573,   574,   525,   101,   102,   370,   544,
  755.    546,   437,   438,   382,   376,   428,   377,   580,   484,   137,
  756.    139,   395,   383,   179,  -143,   586,   397,   110,  -143,    42,
  757.    475,   476,  -275,   434,   428,   593,   -30,   428,   576,    26,
  758.     27,   276,   277,   278,   503,   422,   470,   423,    27,   471,
  759.    472,   486,    61,    62,   -31,    63,   118,   119,   516,   531,
  760.     60,   523,     9,    10,    11,    61,    62,   524,    63,   526,
  761.    529,   530,   502,    64,   533,    65,   532,    66,    67,   534,
  762.    539,   541,   554,   542,    68,   428,    64,    69,    65,   555,
  763.     66,    67,    70,    71,    72,   637,   543,    68,    73,    74,
  764.     69,   547,   424,    75,   425,    70,    71,    72,   557,   567,
  765.    560,    73,    74,   570,   569,   585,    75,   587,   428,   589,
  766.    602,   428,  -171,    76,    77,   590,   426,    36,   105,   592,
  767.    591,   189,   601,   630,   604,   620,    76,    77,   614,   200,
  768.    198,  -106,  -106,  -106,  -106,  -106,  -106,  -106,   428,  -106,
  769.   -106,  -106,  -106,  -106,    37,  -106,  -106,  -106,  -106,  -106,
  770.   -106,  -106,  -106,  -106,  -106,  -106,  -106,  -106,   624,  -106,
  771.    629,  -106,  -106,   633,   106,   639,   648,   642,  -106,   645,
  772.    428,  -106,   653,   107,   656,   657,  -106,  -106,  -106,    23,
  773.    380,   562,  -106,  -106,   300,   459,   116,  -106,   130,   275,
  774.    378,   284,   451,   285,     5,     6,     7,     8,   316,   320,
  775.    286,   132,     9,    10,    11,  -106,  -106,  -106,  -106,   414,
  776.   -106,  -295,  -295,  -295,  -295,  -295,  -295,  -295,    13,  -295,
  777.   -295,  -295,  -295,  -295,   409,  -295,  -295,  -295,  -295,  -295,
  778.   -295,  -295,  -295,  -295,  -295,  -295,  -295,  -295,   224,  -295,
  779.    314,  -295,  -295,   460,   421,   599,    36,   105,  -295,   638,
  780.    600,  -295,   117,   118,   119,   338,  -295,  -295,  -295,     9,
  781.     10,    11,  -295,  -295,   640,   394,  -355,  -295,     0,     0,
  782.      0,   284,     0,    37,     5,     6,     7,     8,     0,     0,
  783.    286,   410,     9,    10,    11,  -295,     0,  -295,  -295,   200,
  784.   -295,  -295,  -295,   106,     0,     0,  -295,  -295,    13,  -295,
  785.      0,     0,   107,  -295,     0,  -295,  -295,  -295,  -295,  -295,
  786.   -295,  -295,  -295,  -295,  -295,  -295,     0,  -295,     0,  -295,
  787.      0,  -295,  -295,     0,     5,    47,     7,    48,  -295,     0,
  788.      0,  -295,     9,    10,    11,     0,  -295,  -295,  -295,     0,
  789.      0,     0,  -295,  -295,     0,     0,  -355,  -295,    13,     0,
  790.      0,     5,    47,     7,    48,     0,     0,    36,   105,     9,
  791.     10,    11,     0,     0,     0,  -295,   462,  -295,  -295,   200,
  792.   -295,  -295,  -295,     0,     0,    13,  -295,  -295,     0,  -295,
  793.      0,     0,     0,  -295,    37,  -295,  -295,  -295,  -295,  -295,
  794.   -295,  -295,  -295,  -295,  -295,  -295,     0,  -295,     0,  -295,
  795.      0,  -295,  -295,     0,   106,     0,     0,     0,  -295,     0,
  796.      0,  -295,     0,   107,     0,     0,  -295,  -295,  -295,     0,
  797.      0,     0,  -295,  -295,    49,     0,     0,  -295,     0,     0,
  798.      0,     5,    47,     7,    48,     0,     0,     0,     0,     9,
  799.     10,    11,     0,     0,     0,  -295,  -276,  -295,  -295,   548,
  800.   -295,  -295,  -295,     0,     0,    13,  -295,  -295,     0,  -295,
  801.      0,     0,     0,  -295,     0,  -295,  -295,  -295,  -295,  -295,
  802.   -295,  -295,  -295,  -295,  -295,  -295,     0,  -295,     0,  -295,
  803.      0,  -295,  -295,     0,     5,     6,     7,     8,  -295,     0,
  804.      0,  -295,     9,    10,    11,     0,  -295,  -295,  -295,     0,
  805.      0,     0,  -295,  -295,   399,     0,     0,  -295,    13,     0,
  806.      0,     5,    47,     7,    48,     0,     0,     0,     0,     9,
  807.     10,    11,     0,     0,     0,  -295,     0,  -295,  -295,   577,
  808.   -295,  -305,  -305,     0,     0,    13,  -305,  -305,     0,  -305,
  809.      0,     0,     0,  -305,     0,  -305,  -305,  -305,  -305,  -305,
  810.   -305,  -305,  -305,  -305,  -305,  -305,     0,  -305,     0,  -305,
  811.      0,  -305,  -305,     0,     0,     0,     0,     0,  -305,   169,
  812.    170,  -305,   171,   172,   173,   174,  -305,  -305,  -305,     0,
  813.      0,     0,  -305,  -305,   545,     0,   145,  -305,    60,     5,
  814.      0,     7,    86,    61,    62,     0,    63,     9,    10,    11,
  815.    164,   165,   166,   167,   168,  -305,     0,  -305,  -305,     0,
  816.   -305,     0,     0,    13,    64,     0,    65,     0,    66,    67,
  817.      0,     0,     0,     0,     0,    68,   169,   170,    69,   171,
  818.    172,   173,   174,    70,    71,    72,     0,     0,     0,    73,
  819.     74,     0,     0,   422,    75,   423,    27,     0,   588,     0,
  820.     61,    62,     0,    63,   159,   160,   161,   162,   163,   164,
  821.    165,   166,   167,   168,    76,    77,     0,   -83,     0,     0,
  822.      0,    64,     0,    65,     0,    66,    67,     0,     0,     0,
  823.      0,     0,    68,     0,     0,    69,     0,     0,     0,     0,
  824.     70,    71,    72,     0,     0,     0,    73,    74,     0,     0,
  825.    424,    75,   425,   422,     0,   423,    27,     0,     0,     0,
  826.     61,    62,     0,    63,     0,     0,     0,     0,     0,     0,
  827.   -231,    76,    77,     0,   426,     0,     0,     0,     0,     0,
  828.      0,    64,     0,    65,     0,    66,    67,     0,     0,     0,
  829.      0,     0,    68,     0,     0,    69,     0,     0,     0,     0,
  830.     70,    71,    72,     0,     0,     0,    73,    74,     0,     0,
  831.    424,    75,   425,   401,     0,    60,     0,     0,     0,     0,
  832.     61,    62,     0,    63,    99,     0,     0,   -26,   -26,   -26,
  833.    -26,    76,    77,     0,   426,   -26,   -26,   -26,     0,     0,
  834.      0,    64,     0,    65,     0,    66,    67,     0,     0,     0,
  835.    100,   -26,    68,  -143,     0,    69,     0,     0,     0,  -143,
  836.     70,    71,    72,     0,     0,     0,    73,    74,     0,     0,
  837.      0,    75,   160,   161,   162,   163,   164,   165,   166,   167,
  838.    168,     0,   101,   102,   219,     0,     0,   -22,   -22,   -22,
  839.    -22,    76,    77,     0,   402,   -22,   -22,   -22,     0,     0,
  840.   -143,     0,     0,   213,  -143,   -26,   -18,   -18,   -18,   -18,
  841.    100,   -22,     0,  -143,   -18,   -18,   -18,     0,     0,  -143,
  842.    161,   162,   163,   164,   165,   166,   167,   168,     0,   100,
  843.    -18,     0,  -143,     0,     0,     0,     0,     0,  -143,     0,
  844.     60,     0,   101,   102,     0,    61,    62,     0,    63,   158,
  845.    159,   160,   161,   162,   163,   164,   165,   166,   167,   168,
  846.   -143,     0,     0,     0,  -143,   -22,    64,    60,    65,     0,
  847.     66,    67,    61,    62,     0,    63,     0,    68,     0,  -143,
  848.     69,     0,     0,  -143,   -18,    70,    71,    72,     0,     0,
  849.      0,    73,    74,    64,     0,    65,    75,    66,    67,     0,
  850.      0,     0,     0,     0,    68,     0,     0,    69,     0,     0,
  851.      0,     0,    70,    71,    72,     0,    76,    77,    73,    74,
  852.    269,     0,    60,    75,     0,     0,     0,    61,    62,     0,
  853.     63,   157,   158,   159,   160,   161,   162,   163,   164,   165,
  854.    166,   167,   168,    76,    77,     0,     0,   310,    64,    60,
  855.     65,     0,    66,    67,    61,    62,     0,    63,     0,    68,
  856.      0,     0,    69,     0,     0,     0,     0,    70,    71,    72,
  857.      0,     0,     0,    73,    74,    64,     0,    65,    75,    66,
  858.     67,   565,     0,     0,     0,     0,    68,     0,     0,    69,
  859.      0,     0,     0,     0,    70,    71,    72,     0,    76,    77,
  860.     73,    74,   339,     0,     0,    75,   152,   153,   154,   566,
  861.    155,   156,   157,   158,   159,   160,   161,   162,   163,   164,
  862.    165,   166,   167,   168,     0,    76,    77,     0,     0,   478,
  863.    423,   488,     6,     7,     8,    61,    62,     0,    63,     9,
  864.     10,    11,   489,     0,   490,   491,   492,   493,   494,   495,
  865.    496,   497,   498,   499,   500,    13,    64,     0,    65,     0,
  866.     66,    67,     0,     0,     0,     0,     0,    68,     0,     0,
  867.     69,     0,     0,     0,     0,    70,    71,    72,     0,     0,
  868.      0,    73,    74,     0,     0,     0,    75,     0,     0,     0,
  869.      0,     0,     0,     5,     0,     7,   185,     0,     0,     0,
  870.      0,     9,    10,    11,   501,     0,    76,    77,     0,   237,
  871.    423,    27,     0,     0,     0,    61,    62,    13,    63,    37,
  872.      0,     0,   489,     0,   490,   491,   492,   493,   494,   495,
  873.    496,   497,   498,   499,   500,     0,    64,     0,    65,   177,
  874.     66,    67,     0,     0,     0,     0,     0,    68,   178,   179,
  875.     69,     0,     0,     0,     0,    70,    71,    72,     0,     0,
  876.      0,    73,    74,     0,    60,     0,    75,     0,     0,    61,
  877.     62,     0,    63,   162,   163,   164,   165,   166,   167,   168,
  878.      0,     0,     0,     0,   501,     0,    76,    77,     0,   237,
  879.     64,     0,    65,     0,    66,    67,     0,     0,     0,     0,
  880.      0,    68,     0,     0,    69,     0,     0,     0,     0,    70,
  881.     71,    72,     0,     0,     0,    73,    74,     0,     0,     0,
  882.     75,    60,     5,     0,     7,    86,    61,    62,     0,    63,
  883.      9,    10,    11,     0,     0,     0,     0,     0,     0,     0,
  884.     76,    77,     0,   328,     0,     0,    13,    64,    60,    65,
  885.      0,    66,    67,    61,    62,     0,    63,     0,    68,     0,
  886.      0,    69,     0,     0,     0,     0,    70,    71,    72,     0,
  887.      0,     0,    73,    74,    64,     0,    65,    75,    66,    67,
  888.      0,    60,     0,     0,     0,    68,    61,    62,    69,    63,
  889.      0,     0,     0,    70,    71,    72,     0,    76,    77,    73,
  890.     74,     0,     0,     0,    75,     0,     0,    64,    60,    65,
  891.      0,    66,    67,    61,    62,     0,    63,     0,    68,     0,
  892.      0,    69,   535,     0,    76,    77,    70,    71,    72,     0,
  893.      0,     0,    73,    74,    64,    60,    65,    75,    66,    67,
  894.     61,    62,     0,    63,     0,    68,     0,     0,    69,     0,
  895.      0,     0,     0,    70,    71,    72,     0,    76,    77,    73,
  896.     74,    64,   379,    65,   136,    66,    67,    61,    62,     0,
  897.     63,     0,    68,     0,     0,    69,     0,     0,     0,     0,
  898.     70,    71,    72,     0,    76,    77,    73,    74,    64,     0,
  899.     65,   138,    66,    67,     0,     0,     0,     0,     0,    68,
  900.      0,     0,    69,     0,     0,     0,     0,    70,    71,    72,
  901.      0,    76,    77,    73,    74,     0,     0,     4,    75,  -110,
  902.      5,     6,     7,     8,     0,     0,     0,     0,     9,    10,
  903.     11,     0,     0,     0,     0,     0,     0,     0,    76,    77,
  904.      0,     0,     0,    12,    13,     0,  -110,   517,   152,   153,
  905.    154,     0,   155,   156,   157,   158,   159,   160,   161,   162,
  906.    163,   164,   165,   166,   167,   168,  -110,     0,     0,     0,
  907.      0,     0,   152,   153,   154,  -110,   155,   156,   157,   158,
  908.    159,   160,   161,   162,   163,   164,   165,   166,   167,   168,
  909.      0,     0,    37,    14,     0,     0,   582,   152,   153,   154,
  910.      0,   155,   156,   157,   158,   159,   160,   161,   162,   163,
  911.    164,   165,   166,   167,   168,     0,     0,     0,     0,     0,
  912.    518,   152,   153,   154,   608,   155,   156,   157,   158,   159,
  913.    160,   161,   162,   163,   164,   165,   166,   167,   168,   152,
  914.    153,   154,     0,   155,   156,   157,   158,   159,   160,   161,
  915.    162,   163,   164,   165,   166,   167,   168,   154,     0,   155,
  916.    156,   157,   158,   159,   160,   161,   162,   163,   164,   165,
  917.    166,   167,   168,   156,   157,   158,   159,   160,   161,   162,
  918.    163,   164,   165,   166,   167,   168
  919. };
  920.  
  921. static const short yycheck[] = {    34,
  922.     35,    18,     9,    10,    11,    46,   147,   103,    50,   195,
  923.     18,    20,     2,     3,     2,     3,   173,   106,    42,   214,
  924.    111,   319,    39,    19,    20,   220,    35,   110,    91,    46,
  925.    398,    39,   202,    50,   216,   268,    52,     9,   178,    96,
  926.     75,   183,    50,   529,   417,     1,    53,    56,    75,     3,
  927.      4,     0,   107,    38,    10,    38,     1,    32,    38,     3,
  928.      4,    68,    27,   528,     1,    59,    75,   102,   472,    66,
  929.     67,    88,    76,   450,    91,    72,    93,    81,     0,    96,
  930.     97,    78,    91,     3,     4,    93,   110,   460,   177,    97,
  931.    107,    76,   469,    76,    59,    60,    76,   180,    30,   107,
  932.    116,   136,   193,   138,    76,    76,    38,   203,    59,   136,
  933.     81,   138,    76,   578,    77,    78,   520,    81,   214,   126,
  934.    606,   419,    59,   132,   220,   265,    82,   136,    82,   138,
  935.    226,   271,   228,   275,   130,   600,   132,    82,    82,   174,
  936.    605,     3,   607,   140,   179,     7,     3,     4,   127,   553,
  937.    636,   616,   556,   208,   211,   134,   180,   212,   133,   392,
  938.    135,   178,    82,     3,   171,   172,   464,   183,    30,    76,
  939.     59,    60,    76,    30,    81,   360,   544,    81,   363,   583,
  940.     77,   188,   217,   207,   649,    77,   343,    76,    50,    81,
  941.     30,   208,    82,    50,   211,   212,    27,    59,    60,    30,
  942.    208,   371,    59,    60,   212,    36,     3,     4,    82,    77,
  943.     50,   615,   353,    81,    30,   222,   151,   152,   153,    59,
  944.    155,   156,   157,   158,   159,   160,   161,   162,   163,   164,
  945.    165,   166,   167,   168,     3,     4,   215,    82,   273,    59,
  946.     60,     3,   239,   383,    59,   415,    77,   417,   265,    78,
  947.     81,   549,    30,    50,   271,   437,    76,    78,     3,   275,
  948.      1,     9,     7,     4,     5,     6,     7,    76,    30,    10,
  949.    366,    12,    13,    14,    81,   371,   433,    59,    60,   288,
  950.     76,    59,    60,   346,   347,    30,   221,    28,    50,    76,
  951.    460,   287,   288,   382,    76,   435,   436,    59,    60,   388,
  952.     59,   384,   442,   443,     1,    50,   389,     4,     5,     6,
  953.      7,   301,    59,   301,    59,    12,    13,    14,    30,    77,
  954.    416,   417,    36,    81,    30,   466,   367,    81,    77,   346,
  955.    347,    28,    81,    77,    77,   342,   315,    81,   346,   347,
  956.     76,    82,   321,   322,    50,     7,   487,    59,    60,   358,
  957.    367,    77,    77,    59,    60,    81,    81,    76,   400,    82,
  958.    384,   357,   358,   370,   460,   389,   383,     1,    30,    76,
  959.      4,    27,     6,     7,     1,   383,     3,     4,    12,    13,
  960.     14,   398,    77,   400,     9,    82,   365,    77,    50,    77,
  961.     83,    81,   400,    81,    28,   330,    77,    59,    60,    36,
  962.    595,    78,   597,   438,    59,    60,   385,   386,   387,    59,
  963.     60,   390,   391,     4,    78,     6,     7,   424,   435,   436,
  964.     78,    12,    13,    14,   359,   442,   443,   435,   436,    77,
  965.     78,   466,   411,    76,   442,   443,    76,    28,   579,   374,
  966.     50,    51,    52,    77,    78,     4,     5,     6,     7,   456,
  967.     78,    10,   487,    12,    13,    14,    76,   643,    38,   466,
  968.     59,    60,    76,   498,    83,   651,     3,     4,    83,    28,
  969.      7,   406,    59,   452,    27,   410,   466,    30,   466,    76,
  970.    487,    76,   573,    36,   625,   626,    77,    78,    77,    78,
  971.    425,   526,   499,    30,    36,   530,    78,   506,    83,   595,
  972.     81,   597,   537,   544,   546,   484,    59,    60,    32,   505,
  973.    506,    59,    60,    50,    83,   450,    76,   552,   453,    63,
  974.     64,     3,    59,    60,    77,   560,    77,   544,    81,   546,
  975.    435,   436,    78,    76,   469,   570,    38,   472,   546,     3,
  976.      4,     5,     6,     7,   579,     1,    38,     3,     4,    78,
  977.     81,    78,     8,     9,    38,    11,     6,     7,    36,   494,
  978.      3,    83,    12,    13,    14,     8,     9,    78,    11,    59,
  979.     59,    59,   579,    29,    77,    31,    38,    33,    34,    77,
  980.      7,    38,   517,    77,    40,   520,    29,    43,    31,    36,
  981.     33,    34,    48,    49,    50,   630,    77,    40,    54,    55,
  982.     43,    16,    58,    59,    60,    48,    49,    50,    78,    77,
  983.     59,    54,    55,    59,    77,    76,    59,    17,   553,    77,
  984.     36,   556,    78,    79,    80,    76,    82,     3,     4,    77,
  985.    565,     7,    76,    59,    76,     9,    79,    80,    77,     1,
  986.     83,     3,     4,     5,     6,     7,     8,     9,   583,    11,
  987.     12,    13,    14,    15,    30,    17,    18,    19,    20,    21,
  988.     22,    23,    24,    25,    26,    27,    28,    29,    77,    31,
  989.     77,    33,    34,    81,    50,    77,    77,    76,    40,    76,
  990.    615,    43,    77,    59,     0,     0,    48,    49,    50,     3,
  991.    343,   529,    54,    55,   203,   416,    51,    59,    56,   186,
  992.    342,     1,   406,     3,     4,     5,     6,     7,   224,   228,
  993.     10,    56,    12,    13,    14,    77,    78,    79,    80,     1,
  994.     82,     3,     4,     5,     6,     7,     8,     9,    28,    11,
  995.     12,    13,    14,    15,   366,    17,    18,    19,    20,    21,
  996.     22,    23,    24,    25,    26,    27,    28,    29,   126,    31,
  997.    222,    33,    34,   416,   372,   579,     3,     4,    40,   631,
  998.    579,    43,     5,     6,     7,   272,    48,    49,    50,    12,
  999.     13,    14,    54,    55,   633,   350,    76,    59,    -1,    -1,
  1000.     -1,     1,    -1,    30,     4,     5,     6,     7,    -1,    -1,
  1001.     10,    38,    12,    13,    14,    77,    -1,    79,    80,     1,
  1002.     82,     3,     4,    50,    -1,    -1,     8,     9,    28,    11,
  1003.     -1,    -1,    59,    15,    -1,    17,    18,    19,    20,    21,
  1004.     22,    23,    24,    25,    26,    27,    -1,    29,    -1,    31,
  1005.     -1,    33,    34,    -1,     4,     5,     6,     7,    40,    -1,
  1006.     -1,    43,    12,    13,    14,    -1,    48,    49,    50,    -1,
  1007.     -1,    -1,    54,    55,    -1,    -1,    76,    59,    28,    -1,
  1008.     -1,     4,     5,     6,     7,    -1,    -1,     3,     4,    12,
  1009.     13,    14,    -1,    -1,    -1,    77,    78,    79,    80,     1,
  1010.     82,     3,     4,    -1,    -1,    28,     8,     9,    -1,    11,
  1011.     -1,    -1,    -1,    15,    30,    17,    18,    19,    20,    21,
  1012.     22,    23,    24,    25,    26,    27,    -1,    29,    -1,    31,
  1013.     -1,    33,    34,    -1,    50,    -1,    -1,    -1,    40,    -1,
  1014.     -1,    43,    -1,    59,    -1,    -1,    48,    49,    50,    -1,
  1015.     -1,    -1,    54,    55,    77,    -1,    -1,    59,    -1,    -1,
  1016.     -1,     4,     5,     6,     7,    -1,    -1,    -1,    -1,    12,
  1017.     13,    14,    -1,    -1,    -1,    77,    78,    79,    80,     1,
  1018.     82,     3,     4,    -1,    -1,    28,     8,     9,    -1,    11,
  1019.     -1,    -1,    -1,    15,    -1,    17,    18,    19,    20,    21,
  1020.     22,    23,    24,    25,    26,    27,    -1,    29,    -1,    31,
  1021.     -1,    33,    34,    -1,     4,     5,     6,     7,    40,    -1,
  1022.     -1,    43,    12,    13,    14,    -1,    48,    49,    50,    -1,
  1023.     -1,    -1,    54,    55,    77,    -1,    -1,    59,    28,    -1,
  1024.     -1,     4,     5,     6,     7,    -1,    -1,    -1,    -1,    12,
  1025.     13,    14,    -1,    -1,    -1,    77,    -1,    79,    80,     1,
  1026.     82,     3,     4,    -1,    -1,    28,     8,     9,    -1,    11,
  1027.     -1,    -1,    -1,    15,    -1,    17,    18,    19,    20,    21,
  1028.     22,    23,    24,    25,    26,    27,    -1,    29,    -1,    31,
  1029.     -1,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,    54,
  1030.     55,    43,    57,    58,    59,    60,    48,    49,    50,    -1,
  1031.     -1,    -1,    54,    55,    77,    -1,     1,    59,     3,     4,
  1032.     -1,     6,     7,     8,     9,    -1,    11,    12,    13,    14,
  1033.     48,    49,    50,    51,    52,    77,    -1,    79,    80,    -1,
  1034.     82,    -1,    -1,    28,    29,    -1,    31,    -1,    33,    34,
  1035.     -1,    -1,    -1,    -1,    -1,    40,    54,    55,    43,    57,
  1036.     58,    59,    60,    48,    49,    50,    -1,    -1,    -1,    54,
  1037.     55,    -1,    -1,     1,    59,     3,     4,    -1,    76,    -1,
  1038.      8,     9,    -1,    11,    43,    44,    45,    46,    47,    48,
  1039.     49,    50,    51,    52,    79,    80,    -1,    82,    -1,    -1,
  1040.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1041.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1042.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1043.     58,    59,    60,     1,    -1,     3,     4,    -1,    -1,    -1,
  1044.      8,     9,    -1,    11,    -1,    -1,    -1,    -1,    -1,    -1,
  1045.     78,    79,    80,    -1,    82,    -1,    -1,    -1,    -1,    -1,
  1046.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1047.     -1,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1048.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1049.     58,    59,    60,     1,    -1,     3,    -1,    -1,    -1,    -1,
  1050.      8,     9,    -1,    11,     1,    -1,    -1,     4,     5,     6,
  1051.      7,    79,    80,    -1,    82,    12,    13,    14,    -1,    -1,
  1052.     -1,    29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,
  1053.     27,    28,    40,    30,    -1,    43,    -1,    -1,    -1,    36,
  1054.     48,    49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,
  1055.     -1,    59,    44,    45,    46,    47,    48,    49,    50,    51,
  1056.     52,    -1,    59,    60,     1,    -1,    -1,     4,     5,     6,
  1057.      7,    79,    80,    -1,    82,    12,    13,    14,    -1,    -1,
  1058.     77,    -1,    -1,     1,    81,    82,     4,     5,     6,     7,
  1059.     27,    28,    -1,    30,    12,    13,    14,    -1,    -1,    36,
  1060.     45,    46,    47,    48,    49,    50,    51,    52,    -1,    27,
  1061.     28,    -1,    30,    -1,    -1,    -1,    -1,    -1,    36,    -1,
  1062.      3,    -1,    59,    60,    -1,     8,     9,    -1,    11,    42,
  1063.     43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  1064.     77,    -1,    -1,    -1,    81,    82,    29,     3,    31,    -1,
  1065.     33,    34,     8,     9,    -1,    11,    -1,    40,    -1,    77,
  1066.     43,    -1,    -1,    81,    82,    48,    49,    50,    -1,    -1,
  1067.     -1,    54,    55,    29,    -1,    31,    59,    33,    34,    -1,
  1068.     -1,    -1,    -1,    -1,    40,    -1,    -1,    43,    -1,    -1,
  1069.     -1,    -1,    48,    49,    50,    -1,    79,    80,    54,    55,
  1070.     83,    -1,     3,    59,    -1,    -1,    -1,     8,     9,    -1,
  1071.     11,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1072.     50,    51,    52,    79,    80,    -1,    -1,    83,    29,     3,
  1073.     31,    -1,    33,    34,     8,     9,    -1,    11,    -1,    40,
  1074.     -1,    -1,    43,    -1,    -1,    -1,    -1,    48,    49,    50,
  1075.     -1,    -1,    -1,    54,    55,    29,    -1,    31,    59,    33,
  1076.     34,    10,    -1,    -1,    -1,    -1,    40,    -1,    -1,    43,
  1077.     -1,    -1,    -1,    -1,    48,    49,    50,    -1,    79,    80,
  1078.     54,    55,    83,    -1,    -1,    59,    35,    36,    37,    38,
  1079.     39,    40,    41,    42,    43,    44,    45,    46,    47,    48,
  1080.     49,    50,    51,    52,    -1,    79,    80,    -1,    -1,    83,
  1081.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  1082.     13,    14,    15,    -1,    17,    18,    19,    20,    21,    22,
  1083.     23,    24,    25,    26,    27,    28,    29,    -1,    31,    -1,
  1084.     33,    34,    -1,    -1,    -1,    -1,    -1,    40,    -1,    -1,
  1085.     43,    -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,
  1086.     -1,    54,    55,    -1,    -1,    -1,    59,    -1,    -1,    -1,
  1087.     -1,    -1,    -1,     4,    -1,     6,     7,    -1,    -1,    -1,
  1088.     -1,    12,    13,    14,    77,    -1,    79,    80,    -1,    82,
  1089.      3,     4,    -1,    -1,    -1,     8,     9,    28,    11,    30,
  1090.     -1,    -1,    15,    -1,    17,    18,    19,    20,    21,    22,
  1091.     23,    24,    25,    26,    27,    -1,    29,    -1,    31,    50,
  1092.     33,    34,    -1,    -1,    -1,    -1,    -1,    40,    59,    60,
  1093.     43,    -1,    -1,    -1,    -1,    48,    49,    50,    -1,    -1,
  1094.     -1,    54,    55,    -1,     3,    -1,    59,    -1,    -1,     8,
  1095.      9,    -1,    11,    46,    47,    48,    49,    50,    51,    52,
  1096.     -1,    -1,    -1,    -1,    77,    -1,    79,    80,    -1,    82,
  1097.     29,    -1,    31,    -1,    33,    34,    -1,    -1,    -1,    -1,
  1098.     -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,    48,
  1099.     49,    50,    -1,    -1,    -1,    54,    55,    -1,    -1,    -1,
  1100.     59,     3,     4,    -1,     6,     7,     8,     9,    -1,    11,
  1101.     12,    13,    14,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1102.     79,    80,    -1,    82,    -1,    -1,    28,    29,     3,    31,
  1103.     -1,    33,    34,     8,     9,    -1,    11,    -1,    40,    -1,
  1104.     -1,    43,    -1,    -1,    -1,    -1,    48,    49,    50,    -1,
  1105.     -1,    -1,    54,    55,    29,    -1,    31,    59,    33,    34,
  1106.     -1,     3,    -1,    -1,    -1,    40,     8,     9,    43,    11,
  1107.     -1,    -1,    -1,    48,    49,    50,    -1,    79,    80,    54,
  1108.     55,    -1,    -1,    -1,    59,    -1,    -1,    29,     3,    31,
  1109.     -1,    33,    34,     8,     9,    -1,    11,    -1,    40,    -1,
  1110.     -1,    43,    77,    -1,    79,    80,    48,    49,    50,    -1,
  1111.     -1,    -1,    54,    55,    29,     3,    31,    59,    33,    34,
  1112.      8,     9,    -1,    11,    -1,    40,    -1,    -1,    43,    -1,
  1113.     -1,    -1,    -1,    48,    49,    50,    -1,    79,    80,    54,
  1114.     55,    29,     3,    31,    59,    33,    34,     8,     9,    -1,
  1115.     11,    -1,    40,    -1,    -1,    43,    -1,    -1,    -1,    -1,
  1116.     48,    49,    50,    -1,    79,    80,    54,    55,    29,    -1,
  1117.     31,    59,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,
  1118.     -1,    -1,    43,    -1,    -1,    -1,    -1,    48,    49,    50,
  1119.     -1,    79,    80,    54,    55,    -1,    -1,     1,    59,     3,
  1120.      4,     5,     6,     7,    -1,    -1,    -1,    -1,    12,    13,
  1121.     14,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    79,    80,
  1122.     -1,    -1,    -1,    27,    28,    -1,    30,    10,    35,    36,
  1123.     37,    -1,    39,    40,    41,    42,    43,    44,    45,    46,
  1124.     47,    48,    49,    50,    51,    52,    50,    -1,    -1,    -1,
  1125.     -1,    -1,    35,    36,    37,    59,    39,    40,    41,    42,
  1126.     43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  1127.     -1,    -1,    30,    77,    -1,    -1,    83,    35,    36,    37,
  1128.     -1,    39,    40,    41,    42,    43,    44,    45,    46,    47,
  1129.     48,    49,    50,    51,    52,    -1,    -1,    -1,    -1,    -1,
  1130.     83,    35,    36,    37,    38,    39,    40,    41,    42,    43,
  1131.     44,    45,    46,    47,    48,    49,    50,    51,    52,    35,
  1132.     36,    37,    -1,    39,    40,    41,    42,    43,    44,    45,
  1133.     46,    47,    48,    49,    50,    51,    52,    37,    -1,    39,
  1134.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1135.     50,    51,    52,    40,    41,    42,    43,    44,    45,    46,
  1136.     47,    48,    49,    50,    51,    52
  1137. };
  1138. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  1139. #line 3 "/usr/local/lib/bison.simple"
  1140.  
  1141. /* Skeleton output parser for bison,
  1142.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  1143.  
  1144.    This program is free software; you can redistribute it and/or modify
  1145.    it under the terms of the GNU General Public License as published by
  1146.    the Free Software Foundation; either version 1, or (at your option)
  1147.    any later version.
  1148.  
  1149.    This program is distributed in the hope that it will be useful,
  1150.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  1151.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1152.    GNU General Public License for more details.
  1153.  
  1154.    You should have received a copy of the GNU General Public License
  1155.    along with this program; if not, write to the Free Software
  1156.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1157.  
  1158.  
  1159. #ifndef alloca
  1160. #ifdef __GNUC__
  1161. #define alloca __builtin_alloca
  1162. #else /* not GNU C.  */
  1163. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  1164. #include <alloca.h>
  1165. #else /* not sparc */
  1166. #if defined (MSDOS) && !defined (__TURBOC__)
  1167. #include <malloc.h>
  1168. #else /* not MSDOS, or __TURBOC__ */
  1169. #if defined(_AIX)
  1170. #include <malloc.h>
  1171.  #pragma alloca
  1172. #else /* not MSDOS, __TURBOC__, or _AIX */
  1173. #ifdef __hpux
  1174. #ifdef __cplusplus
  1175. extern "C" {
  1176. void *alloca (unsigned int);
  1177. };
  1178. #else /* not __cplusplus */
  1179. void *alloca ();
  1180. #endif /* not __cplusplus */
  1181. #endif /* __hpux */
  1182. #endif /* not _AIX */
  1183. #endif /* not MSDOS, or __TURBOC__ */
  1184. #endif /* not sparc.  */
  1185. #endif /* not GNU C.  */
  1186. #endif /* alloca not defined.  */
  1187.  
  1188. /* This is the parser code that is written into each bison parser
  1189.   when the %semantic_parser declaration is not specified in the grammar.
  1190.   It was written by Richard Stallman by simplifying the hairy parser
  1191.   used when %semantic_parser is specified.  */
  1192.  
  1193. /* Note: there must be only one dollar sign in this file.
  1194.    It is replaced by the list of actions, each action
  1195.    as one case of the switch.  */
  1196.  
  1197. #define yyerrok        (yyerrstatus = 0)
  1198. #define yyclearin    (yychar = YYEMPTY)
  1199. #define YYEMPTY        -2
  1200. #define YYEOF        0
  1201. #define YYACCEPT    return(0)
  1202. #define YYABORT     return(1)
  1203. #define YYERROR        goto yyerrlab1
  1204. /* Like YYERROR except do call yyerror.
  1205.    This remains here temporarily to ease the
  1206.    transition to the new meaning of YYERROR, for GCC.
  1207.    Once GCC version 2 has supplanted version 1, this can go.  */
  1208. #define YYFAIL        goto yyerrlab
  1209. #define YYRECOVERING()  (!!yyerrstatus)
  1210. #define YYBACKUP(token, value) \
  1211. do                                \
  1212.   if (yychar == YYEMPTY && yylen == 1)                \
  1213.     { yychar = (token), yylval = (value);            \
  1214.       yychar1 = YYTRANSLATE (yychar);                \
  1215.       YYPOPSTACK;                        \
  1216.       goto yybackup;                        \
  1217.     }                                \
  1218.   else                                \
  1219.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  1220. while (0)
  1221.  
  1222. #define YYTERROR    1
  1223. #define YYERRCODE    256
  1224.  
  1225. #ifndef YYPURE
  1226. #define YYLEX        yylex()
  1227. #endif
  1228.  
  1229. #ifdef YYPURE
  1230. #ifdef YYLSP_NEEDED
  1231. #define YYLEX        yylex(&yylval, &yylloc)
  1232. #else
  1233. #define YYLEX        yylex(&yylval)
  1234. #endif
  1235. #endif
  1236.  
  1237. /* If nonreentrant, generate the variables here */
  1238.  
  1239. #ifndef YYPURE
  1240.  
  1241. int    yychar;            /*  the lookahead symbol        */
  1242. YYSTYPE    yylval;            /*  the semantic value of the        */
  1243.                 /*  lookahead symbol            */
  1244.  
  1245. #ifdef YYLSP_NEEDED
  1246. YYLTYPE yylloc;            /*  location data for the lookahead    */
  1247.                 /*  symbol                */
  1248. #endif
  1249.  
  1250. int yynerrs;            /*  number of parse errors so far       */
  1251. #endif  /* not YYPURE */
  1252.  
  1253. #if YYDEBUG != 0
  1254. int yydebug;            /*  nonzero means print parse trace    */
  1255. /* Since this is uninitialized, it does not stop multiple parsers
  1256.    from coexisting.  */
  1257. #endif
  1258.  
  1259. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  1260.  
  1261. #ifndef    YYINITDEPTH
  1262. #define YYINITDEPTH 200
  1263. #endif
  1264.  
  1265. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  1266.     (effective only if the built-in stack extension method is used).  */
  1267.  
  1268. #if YYMAXDEPTH == 0
  1269. #undef YYMAXDEPTH
  1270. #endif
  1271.  
  1272. #ifndef YYMAXDEPTH
  1273. #define YYMAXDEPTH 10000
  1274. #endif
  1275.  
  1276. /* Prevent warning if -Wstrict-prototypes.  */
  1277. #ifdef __GNUC__
  1278. int yyparse (void);
  1279. #endif
  1280.  
  1281. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  1282. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  1283. #else                /* not GNU C or C++ */
  1284. #ifndef __cplusplus
  1285.  
  1286. /* This is the most reliable way to avoid incompatibilities
  1287.    in available built-in functions on various systems.  */
  1288. static void
  1289. __yy_bcopy (from, to, count)
  1290.      char *from;
  1291.      char *to;
  1292.      int count;
  1293. {
  1294.   register char *f = from;
  1295.   register char *t = to;
  1296.   register int i = count;
  1297.  
  1298.   while (i-- > 0)
  1299.     *t++ = *f++;
  1300. }
  1301.  
  1302. #else /* __cplusplus */
  1303.  
  1304. /* This is the most reliable way to avoid incompatibilities
  1305.    in available built-in functions on various systems.  */
  1306. static void
  1307. __yy_bcopy (char *from, char *to, int count)
  1308. {
  1309.   register char *f = from;
  1310.   register char *t = to;
  1311.   register int i = count;
  1312.  
  1313.   while (i-- > 0)
  1314.     *t++ = *f++;
  1315. }
  1316.  
  1317. #endif
  1318. #endif
  1319.  
  1320. #line 184 "/usr/local/lib/bison.simple"
  1321.  
  1322. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  1323.    into yyparse.  The argument should have type void *.
  1324.    It should actually point to an object.
  1325.    Grammar actions can access the variable by casting it
  1326.    to the proper pointer type.  */
  1327.  
  1328. #ifdef YYPARSE_PARAM
  1329. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  1330. #else
  1331. #define YYPARSE_PARAM
  1332. #define YYPARSE_PARAM_DECL
  1333. #endif
  1334.  
  1335. int
  1336. yyparse(YYPARSE_PARAM)
  1337.      YYPARSE_PARAM_DECL
  1338. {
  1339.   register int yystate;
  1340.   register int yyn;
  1341.   register short *yyssp;
  1342.   register YYSTYPE *yyvsp;
  1343.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  1344.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  1345.  
  1346.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  1347.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  1348.  
  1349.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  1350.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  1351.  
  1352. #ifdef YYLSP_NEEDED
  1353.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  1354.   YYLTYPE *yyls = yylsa;
  1355.   YYLTYPE *yylsp;
  1356.  
  1357. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  1358. #else
  1359. #define YYPOPSTACK   (yyvsp--, yyssp--)
  1360. #endif
  1361.  
  1362.   int yystacksize = YYINITDEPTH;
  1363.  
  1364. #ifdef YYPURE
  1365.   int yychar;
  1366.   YYSTYPE yylval;
  1367.   int yynerrs;
  1368. #ifdef YYLSP_NEEDED
  1369.   YYLTYPE yylloc;
  1370. #endif
  1371. #endif
  1372.  
  1373.   YYSTYPE yyval;        /*  the variable used to return        */
  1374.                 /*  semantic values from the action    */
  1375.                 /*  routines                */
  1376.  
  1377.   int yylen;
  1378.  
  1379. #if YYDEBUG != 0
  1380.   if (yydebug)
  1381.     fprintf(stderr, "Starting parse\n");
  1382. #endif
  1383.  
  1384.   yystate = 0;
  1385.   yyerrstatus = 0;
  1386.   yynerrs = 0;
  1387.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  1388.  
  1389.   /* Initialize stack pointers.
  1390.      Waste one element of value and location stack
  1391.      so that they stay on the same level as the state stack.
  1392.      The wasted elements are never initialized.  */
  1393.  
  1394.   yyssp = yyss - 1;
  1395.   yyvsp = yyvs;
  1396. #ifdef YYLSP_NEEDED
  1397.   yylsp = yyls;
  1398. #endif
  1399.  
  1400. /* Push a new state, which is found in  yystate  .  */
  1401. /* In all cases, when you get here, the value and location stacks
  1402.    have just been pushed. so pushing a state here evens the stacks.  */
  1403. yynewstate:
  1404.  
  1405.   *++yyssp = yystate;
  1406.  
  1407.   if (yyssp >= yyss + yystacksize - 1)
  1408.     {
  1409.       /* Give user a chance to reallocate the stack */
  1410.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  1411.       YYSTYPE *yyvs1 = yyvs;
  1412.       short *yyss1 = yyss;
  1413. #ifdef YYLSP_NEEDED
  1414.       YYLTYPE *yyls1 = yyls;
  1415. #endif
  1416.  
  1417.       /* Get the current used size of the three stacks, in elements.  */
  1418.       int size = yyssp - yyss + 1;
  1419.  
  1420. #ifdef yyoverflow
  1421.       /* Each stack pointer address is followed by the size of
  1422.      the data in use in that stack, in bytes.  */
  1423. #ifdef YYLSP_NEEDED
  1424.       /* This used to be a conditional around just the two extra args,
  1425.      but that might be undefined if yyoverflow is a macro.  */
  1426.       yyoverflow("parser stack overflow",
  1427.          &yyss1, size * sizeof (*yyssp),
  1428.          &yyvs1, size * sizeof (*yyvsp),
  1429.          &yyls1, size * sizeof (*yylsp),
  1430.          &yystacksize);
  1431. #else
  1432.       yyoverflow("parser stack overflow",
  1433.          &yyss1, size * sizeof (*yyssp),
  1434.          &yyvs1, size * sizeof (*yyvsp),
  1435.          &yystacksize);
  1436. #endif
  1437.  
  1438.       yyss = yyss1; yyvs = yyvs1;
  1439. #ifdef YYLSP_NEEDED
  1440.       yyls = yyls1;
  1441. #endif
  1442. #else /* no yyoverflow */
  1443.       /* Extend the stack our own way.  */
  1444.       if (yystacksize >= YYMAXDEPTH)
  1445.     {
  1446.       yyerror("parser stack overflow");
  1447.       return 2;
  1448.     }
  1449.       yystacksize *= 2;
  1450.       if (yystacksize > YYMAXDEPTH)
  1451.     yystacksize = YYMAXDEPTH;
  1452.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  1453.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  1454.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  1455.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  1456. #ifdef YYLSP_NEEDED
  1457.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  1458.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  1459. #endif
  1460. #endif /* no yyoverflow */
  1461.  
  1462.       yyssp = yyss + size - 1;
  1463.       yyvsp = yyvs + size - 1;
  1464. #ifdef YYLSP_NEEDED
  1465.       yylsp = yyls + size - 1;
  1466. #endif
  1467.  
  1468. #if YYDEBUG != 0
  1469.       if (yydebug)
  1470.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  1471. #endif
  1472.  
  1473.       if (yyssp >= yyss + yystacksize - 1)
  1474.     YYABORT;
  1475.     }
  1476.  
  1477. #if YYDEBUG != 0
  1478.   if (yydebug)
  1479.     fprintf(stderr, "Entering state %d\n", yystate);
  1480. #endif
  1481.  
  1482.   goto yybackup;
  1483.  yybackup:
  1484.  
  1485. /* Do appropriate processing given the current state.  */
  1486. /* Read a lookahead token if we need one and don't already have one.  */
  1487. /* yyresume: */
  1488.  
  1489.   /* First try to decide what to do without reference to lookahead token.  */
  1490.  
  1491.   yyn = yypact[yystate];
  1492.   if (yyn == YYFLAG)
  1493.     goto yydefault;
  1494.  
  1495.   /* Not known => get a lookahead token if don't already have one.  */
  1496.  
  1497.   /* yychar is either YYEMPTY or YYEOF
  1498.      or a valid token in external form.  */
  1499.  
  1500.   if (yychar == YYEMPTY)
  1501.     {
  1502. #if YYDEBUG != 0
  1503.       if (yydebug)
  1504.     fprintf(stderr, "Reading a token: ");
  1505. #endif
  1506.       yychar = YYLEX;
  1507.     }
  1508.  
  1509.   /* Convert token to internal form (in yychar1) for indexing tables with */
  1510.  
  1511.   if (yychar <= 0)        /* This means end of input. */
  1512.     {
  1513.       yychar1 = 0;
  1514.       yychar = YYEOF;        /* Don't call YYLEX any more */
  1515.  
  1516. #if YYDEBUG != 0
  1517.       if (yydebug)
  1518.     fprintf(stderr, "Now at end of input.\n");
  1519. #endif
  1520.     }
  1521.   else
  1522.     {
  1523.       yychar1 = YYTRANSLATE(yychar);
  1524.  
  1525. #if YYDEBUG != 0
  1526.       if (yydebug)
  1527.     {
  1528.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  1529.       /* Give the individual parser a way to print the precise meaning
  1530.          of a token, for further debugging info.  */
  1531. #ifdef YYPRINT
  1532.       YYPRINT (stderr, yychar, yylval);
  1533. #endif
  1534.       fprintf (stderr, ")\n");
  1535.     }
  1536. #endif
  1537.     }
  1538.  
  1539.   yyn += yychar1;
  1540.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  1541.     goto yydefault;
  1542.  
  1543.   yyn = yytable[yyn];
  1544.  
  1545.   /* yyn is what to do for this token type in this state.
  1546.      Negative => reduce, -yyn is rule number.
  1547.      Positive => shift, yyn is new state.
  1548.        New state is final state => don't bother to shift,
  1549.        just return success.
  1550.      0, or most negative number => error.  */
  1551.  
  1552.   if (yyn < 0)
  1553.     {
  1554.       if (yyn == YYFLAG)
  1555.     goto yyerrlab;
  1556.       yyn = -yyn;
  1557.       goto yyreduce;
  1558.     }
  1559.   else if (yyn == 0)
  1560.     goto yyerrlab;
  1561.  
  1562.   if (yyn == YYFINAL)
  1563.     YYACCEPT;
  1564.  
  1565.   /* Shift the lookahead token.  */
  1566.  
  1567. #if YYDEBUG != 0
  1568.   if (yydebug)
  1569.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  1570. #endif
  1571.  
  1572.   /* Discard the token being shifted unless it is eof.  */
  1573.   if (yychar != YYEOF)
  1574.     yychar = YYEMPTY;
  1575.  
  1576.   *++yyvsp = yylval;
  1577. #ifdef YYLSP_NEEDED
  1578.   *++yylsp = yylloc;
  1579. #endif
  1580.  
  1581.   /* count tokens shifted since error; after three, turn off error status.  */
  1582.   if (yyerrstatus) yyerrstatus--;
  1583.  
  1584.   yystate = yyn;
  1585.   goto yynewstate;
  1586.  
  1587. /* Do the default action for the current state.  */
  1588. yydefault:
  1589.  
  1590.   yyn = yydefact[yystate];
  1591.   if (yyn == 0)
  1592.     goto yyerrlab;
  1593.  
  1594. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  1595. yyreduce:
  1596.   yylen = yyr2[yyn];
  1597.   if (yylen > 0)
  1598.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  1599.  
  1600. #if YYDEBUG != 0
  1601.   if (yydebug)
  1602.     {
  1603.       int i;
  1604.  
  1605.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  1606.            yyn, yyrline[yyn]);
  1607.  
  1608.       /* Print the symbols being reduced, and their result.  */
  1609.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  1610.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  1611.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  1612.     }
  1613. #endif
  1614.  
  1615.  
  1616.   switch (yyn) {
  1617.  
  1618. case 1:
  1619. #line 232 "c-parse.y"
  1620. { if (pedantic)
  1621.             pedwarn ("ANSI C forbids an empty source file");
  1622.           finish_file ();
  1623.         ;
  1624.     break;}
  1625. case 2:
  1626. #line 237 "c-parse.y"
  1627. {
  1628.           /* In case there were missing closebraces,
  1629.              get us back to the global binding level.  */
  1630.           while (! global_bindings_p ())
  1631.             poplevel (0, 0, 0);
  1632.           finish_file ();
  1633.         ;
  1634.     break;}
  1635. case 3:
  1636. #line 251 "c-parse.y"
  1637. {yyval.ttype = NULL_TREE; ;
  1638.     break;}
  1639. case 5:
  1640. #line 252 "c-parse.y"
  1641. {yyval.ttype = NULL_TREE; ;
  1642.     break;}
  1643. case 9:
  1644. #line 259 "c-parse.y"
  1645. { STRIP_NOPS (yyvsp[-2].ttype);
  1646.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  1647.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  1648.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  1649.             assemble_asm (yyvsp[-2].ttype);
  1650.           else
  1651.             error ("argument of `asm' is not a constant string"); ;
  1652.     break;}
  1653. case 10:
  1654. #line 270 "c-parse.y"
  1655. { if (pedantic)
  1656.             error ("ANSI C forbids data definition with no type or storage class");
  1657.           else if (!flag_traditional)
  1658.             warning ("data definition has no type or storage class"); 
  1659.  
  1660.           current_declspecs = TREE_VALUE (declspec_stack);
  1661.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1662.           declspec_stack = TREE_CHAIN (declspec_stack);
  1663.           resume_momentary (yyvsp[-2].itype); ;
  1664.     break;}
  1665. case 11:
  1666. #line 280 "c-parse.y"
  1667. { current_declspecs = TREE_VALUE (declspec_stack);
  1668.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1669.           declspec_stack = TREE_CHAIN (declspec_stack);
  1670.           resume_momentary (yyvsp[-2].itype); ;
  1671.     break;}
  1672. case 12:
  1673. #line 285 "c-parse.y"
  1674. { current_declspecs = TREE_VALUE (declspec_stack);
  1675.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1676.           declspec_stack = TREE_CHAIN (declspec_stack);
  1677.           resume_momentary (yyvsp[-2].itype);  ;
  1678.     break;}
  1679. case 13:
  1680. #line 290 "c-parse.y"
  1681. { pedwarn ("empty declaration"); ;
  1682.     break;}
  1683. case 14:
  1684. #line 292 "c-parse.y"
  1685. { shadow_tag (yyvsp[-1].ttype); ;
  1686.     break;}
  1687. case 17:
  1688. #line 296 "c-parse.y"
  1689. { if (pedantic)
  1690.             pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
  1691.     break;}
  1692. case 18:
  1693. #line 302 "c-parse.y"
  1694. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, prefix_attributes,
  1695.                     NULL_TREE, 0))
  1696.             YYERROR1;
  1697.           reinit_parse_for_function (); ;
  1698.     break;}
  1699. case 19:
  1700. #line 307 "c-parse.y"
  1701. { store_parm_decls (); ;
  1702.     break;}
  1703. case 20:
  1704. #line 309 "c-parse.y"
  1705. { finish_function (0); 
  1706.           current_declspecs = TREE_VALUE (declspec_stack);
  1707.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1708.           declspec_stack = TREE_CHAIN (declspec_stack);
  1709.           resume_momentary (yyvsp[-5].itype); ;
  1710.     break;}
  1711. case 21:
  1712. #line 315 "c-parse.y"
  1713. { current_declspecs = TREE_VALUE (declspec_stack);
  1714.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1715.           declspec_stack = TREE_CHAIN (declspec_stack);
  1716.           resume_momentary (yyvsp[-2].itype); ;
  1717.     break;}
  1718. case 22:
  1719. #line 320 "c-parse.y"
  1720. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, prefix_attributes,
  1721.                     NULL_TREE, 0))
  1722.             YYERROR1;
  1723.           reinit_parse_for_function (); ;
  1724.     break;}
  1725. case 23:
  1726. #line 325 "c-parse.y"
  1727. { store_parm_decls (); ;
  1728.     break;}
  1729. case 24:
  1730. #line 327 "c-parse.y"
  1731. { finish_function (0); 
  1732.           current_declspecs = TREE_VALUE (declspec_stack);
  1733.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1734.           declspec_stack = TREE_CHAIN (declspec_stack);
  1735.           resume_momentary (yyvsp[-5].itype); ;
  1736.     break;}
  1737. case 25:
  1738. #line 333 "c-parse.y"
  1739. { current_declspecs = TREE_VALUE (declspec_stack);
  1740.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1741.           declspec_stack = TREE_CHAIN (declspec_stack);
  1742.           resume_momentary (yyvsp[-2].itype); ;
  1743.     break;}
  1744. case 26:
  1745. #line 338 "c-parse.y"
  1746. { if (! start_function (NULL_TREE, yyvsp[0].ttype,
  1747.                     prefix_attributes, NULL_TREE, 0))
  1748.             YYERROR1;
  1749.           reinit_parse_for_function (); ;
  1750.     break;}
  1751. case 27:
  1752. #line 343 "c-parse.y"
  1753. { store_parm_decls (); ;
  1754.     break;}
  1755. case 28:
  1756. #line 345 "c-parse.y"
  1757. { finish_function (0); 
  1758.           current_declspecs = TREE_VALUE (declspec_stack);
  1759.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1760.           declspec_stack = TREE_CHAIN (declspec_stack);
  1761.           resume_momentary (yyvsp[-5].itype); ;
  1762.     break;}
  1763. case 29:
  1764. #line 351 "c-parse.y"
  1765. { current_declspecs = TREE_VALUE (declspec_stack);
  1766.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  1767.           declspec_stack = TREE_CHAIN (declspec_stack);
  1768.           resume_momentary (yyvsp[-2].itype); ;
  1769.     break;}
  1770. case 32:
  1771. #line 363 "c-parse.y"
  1772. { yyval.code = ADDR_EXPR; ;
  1773.     break;}
  1774. case 33:
  1775. #line 365 "c-parse.y"
  1776. { yyval.code = NEGATE_EXPR; ;
  1777.     break;}
  1778. case 34:
  1779. #line 367 "c-parse.y"
  1780. { yyval.code = CONVERT_EXPR; ;
  1781.     break;}
  1782. case 35:
  1783. #line 369 "c-parse.y"
  1784. { yyval.code = PREINCREMENT_EXPR; ;
  1785.     break;}
  1786. case 36:
  1787. #line 371 "c-parse.y"
  1788. { yyval.code = PREDECREMENT_EXPR; ;
  1789.     break;}
  1790. case 37:
  1791. #line 373 "c-parse.y"
  1792. { yyval.code = BIT_NOT_EXPR; ;
  1793.     break;}
  1794. case 38:
  1795. #line 375 "c-parse.y"
  1796. { yyval.code = TRUTH_NOT_EXPR; ;
  1797.     break;}
  1798. case 39:
  1799. #line 379 "c-parse.y"
  1800. { yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
  1801.     break;}
  1802. case 40:
  1803. #line 384 "c-parse.y"
  1804. { yyval.ttype = NULL_TREE; ;
  1805.     break;}
  1806. case 42:
  1807. #line 390 "c-parse.y"
  1808. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  1809.     break;}
  1810. case 43:
  1811. #line 392 "c-parse.y"
  1812. { chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  1813.     break;}
  1814. case 45:
  1815. #line 398 "c-parse.y"
  1816. { yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  1817.     break;}
  1818. case 46:
  1819. #line 401 "c-parse.y"
  1820. { yyvsp[0].itype = pedantic;
  1821.           pedantic = 0; ;
  1822.     break;}
  1823. case 47:
  1824. #line 404 "c-parse.y"
  1825. { yyval.ttype = yyvsp[0].ttype;
  1826.           pedantic = yyvsp[-2].itype; ;
  1827.     break;}
  1828. case 48:
  1829. #line 407 "c-parse.y"
  1830. { yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
  1831.           overflow_warning (yyval.ttype); ;
  1832.     break;}
  1833. case 49:
  1834. #line 411 "c-parse.y"
  1835. { tree label = lookup_label (yyvsp[0].ttype);
  1836.           if (pedantic)
  1837.             pedwarn ("ANSI C forbids `&&'");
  1838.           if (label == 0)
  1839.             yyval.ttype = null_pointer_node;
  1840.           else
  1841.             {
  1842.               TREE_USED (label) = 1;
  1843.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  1844.               TREE_CONSTANT (yyval.ttype) = 1;
  1845.             }
  1846.         ;
  1847.     break;}
  1848. case 50:
  1849. #line 439 "c-parse.y"
  1850. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  1851.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  1852.             error ("`sizeof' applied to a bit-field");
  1853.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  1854.     break;}
  1855. case 51:
  1856. #line 444 "c-parse.y"
  1857. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  1858.     break;}
  1859. case 52:
  1860. #line 446 "c-parse.y"
  1861. { yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
  1862.     break;}
  1863. case 53:
  1864. #line 448 "c-parse.y"
  1865. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  1866.     break;}
  1867. case 54:
  1868. #line 450 "c-parse.y"
  1869. { yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
  1870.     break;}
  1871. case 55:
  1872. #line 452 "c-parse.y"
  1873. { yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
  1874.     break;}
  1875. case 57:
  1876. #line 458 "c-parse.y"
  1877. { tree type = groktypename (yyvsp[-2].ttype);
  1878.           yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
  1879.     break;}
  1880. case 58:
  1881. #line 461 "c-parse.y"
  1882. { start_init (NULL_TREE, NULL, 0);
  1883.           yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
  1884.           really_start_incremental_init (yyvsp[-2].ttype); ;
  1885.     break;}
  1886. case 59:
  1887. #line 465 "c-parse.y"
  1888. { char *name;
  1889.           tree result = pop_init_level (0);
  1890.           tree type = yyvsp[-5].ttype;
  1891.           finish_init ();
  1892.  
  1893.           if (pedantic)
  1894.             pedwarn ("ANSI C forbids constructor expressions");
  1895.           if (TYPE_NAME (type) != 0)
  1896.             {
  1897.               if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  1898.             name = IDENTIFIER_POINTER (TYPE_NAME (type));
  1899.               else
  1900.             name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
  1901.             }
  1902.           else
  1903.             name = "";
  1904.           yyval.ttype = result;
  1905.           if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
  1906.             {
  1907.               int failure = complete_array_type (type, yyval.ttype, 1);
  1908.               if (failure)
  1909.             abort ();
  1910.             }
  1911.         ;
  1912.     break;}
  1913. case 61:
  1914. #line 494 "c-parse.y"
  1915. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1916.     break;}
  1917. case 62:
  1918. #line 496 "c-parse.y"
  1919. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1920.     break;}
  1921. case 63:
  1922. #line 498 "c-parse.y"
  1923. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1924.     break;}
  1925. case 64:
  1926. #line 500 "c-parse.y"
  1927. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1928.     break;}
  1929. case 65:
  1930. #line 502 "c-parse.y"
  1931. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1932.     break;}
  1933. case 66:
  1934. #line 504 "c-parse.y"
  1935. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1936.     break;}
  1937. case 67:
  1938. #line 506 "c-parse.y"
  1939. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1940.     break;}
  1941. case 68:
  1942. #line 508 "c-parse.y"
  1943. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1944.     break;}
  1945. case 69:
  1946. #line 510 "c-parse.y"
  1947. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1948.     break;}
  1949. case 70:
  1950. #line 512 "c-parse.y"
  1951. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1952.     break;}
  1953. case 71:
  1954. #line 514 "c-parse.y"
  1955. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1956.     break;}
  1957. case 72:
  1958. #line 516 "c-parse.y"
  1959. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1960.     break;}
  1961. case 73:
  1962. #line 518 "c-parse.y"
  1963. { yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1964.     break;}
  1965. case 74:
  1966. #line 520 "c-parse.y"
  1967. { yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1968.     break;}
  1969. case 75:
  1970. #line 522 "c-parse.y"
  1971. { yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1972.     break;}
  1973. case 76:
  1974. #line 524 "c-parse.y"
  1975. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
  1976.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
  1977.     break;}
  1978. case 77:
  1979. #line 527 "c-parse.y"
  1980. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
  1981.           /* This inhibits warnings in truthvalue_conversion.  */
  1982.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  1983.     break;}
  1984. case 78:
  1985. #line 534 "c-parse.y"
  1986. {
  1987.           yyval.ttype = lastiddecl;
  1988.           if (!yyval.ttype || yyval.ttype == error_mark_node)
  1989.             {
  1990.               if (yychar == YYEMPTY)
  1991.             yychar = YYLEX;
  1992.               if (yychar == '(')
  1993.             {
  1994.                 {
  1995.                   /* Ordinary implicit function declaration.  */
  1996.                   yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  1997.                   assemble_external (yyval.ttype);
  1998.                   TREE_USED (yyval.ttype) = 1;
  1999.                 }
  2000.             }
  2001.               else if (current_function_decl == 0)
  2002.             {
  2003.               error ("`%s' undeclared here (not in a function)",
  2004.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2005.               yyval.ttype = error_mark_node;
  2006.             }
  2007.               else
  2008.             {
  2009.                 {
  2010.                   if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
  2011.                   || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
  2012.                 {
  2013.                   error ("`%s' undeclared (first use this function)",
  2014.                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  2015.  
  2016.                   if (! undeclared_variable_notice)
  2017.                     {
  2018.                       error ("(Each undeclared identifier is reported only once");
  2019.                       error ("for each function it appears in.)");
  2020.                       undeclared_variable_notice = 1;
  2021.                     }
  2022.                 }
  2023.                   yyval.ttype = error_mark_node;
  2024.                   /* Prevent repeated error messages.  */
  2025.                   IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  2026.                   IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
  2027.                 }
  2028.             }
  2029.             }
  2030.           else if (TREE_TYPE (yyval.ttype) == error_mark_node)
  2031.             yyval.ttype = error_mark_node;
  2032.           else if (C_DECL_ANTICIPATED (yyval.ttype))
  2033.             {
  2034.               /* The first time we see a build-in function used,
  2035.              if it has not been declared.  */
  2036.               C_DECL_ANTICIPATED (yyval.ttype) = 0;
  2037.               if (yychar == YYEMPTY)
  2038.             yychar = YYLEX;
  2039.               if (yychar == '(')
  2040.             {
  2041.               /* Omit the implicit declaration we
  2042.                  would ordinarily do, so we don't lose
  2043.                  the actual built in type.
  2044.                  But print a diagnostic for the mismatch.  */
  2045.                 if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
  2046.                   error ("`%s' implicitly declared as function",
  2047.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2048.               else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
  2049.                     != TYPE_MODE (integer_type_node))
  2050.                    && (TREE_TYPE (TREE_TYPE (yyval.ttype))
  2051.                        != void_type_node))
  2052.                 pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
  2053.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2054.               /* If it really returns void, change that to int.  */
  2055.               if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
  2056.                 TREE_TYPE (yyval.ttype)
  2057.                   = build_function_type (integer_type_node,
  2058.                              TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
  2059.             }
  2060.               else
  2061.             pedwarn ("built-in function `%s' used without declaration",
  2062.                  IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  2063.  
  2064.               /* Do what we would ordinarily do when a fn is used.  */
  2065.               assemble_external (yyval.ttype);
  2066.               TREE_USED (yyval.ttype) = 1;
  2067.             }
  2068.           else
  2069.             {
  2070.               assemble_external (yyval.ttype);
  2071.               TREE_USED (yyval.ttype) = 1;
  2072.             }
  2073.  
  2074.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  2075.             {
  2076.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  2077.               /* This is to prevent an enum whose value is 0
  2078.              from being considered a null pointer constant.  */
  2079.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  2080.               TREE_CONSTANT (yyval.ttype) = 1;
  2081.             }
  2082.         ;
  2083.     break;}
  2084. case 80:
  2085. #line 633 "c-parse.y"
  2086. { yyval.ttype = combine_strings (yyvsp[0].ttype); ;
  2087.     break;}
  2088. case 81:
  2089. #line 635 "c-parse.y"
  2090. { char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
  2091.           if (class == 'e' || class == '1'
  2092.               || class == '2' || class == '<')
  2093.             C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
  2094.           yyval.ttype = yyvsp[-1].ttype; ;
  2095.     break;}
  2096. case 82:
  2097. #line 641 "c-parse.y"
  2098. { yyval.ttype = error_mark_node; ;
  2099.     break;}
  2100. case 83:
  2101. #line 643 "c-parse.y"
  2102. { if (current_function_decl == 0)
  2103.             {
  2104.               error ("braced-group within expression allowed only inside a function");
  2105.               YYERROR;
  2106.             }
  2107.           /* We must force a BLOCK for this level
  2108.              so that, if it is not expanded later,
  2109.              there is a way to turn off the entire subtree of blocks
  2110.              that are contained in it.  */
  2111.           keep_next_level ();
  2112.           push_iterator_stack ();
  2113.           push_label_level ();
  2114.           yyval.ttype = expand_start_stmt_expr (); ;
  2115.     break;}
  2116. case 84:
  2117. #line 657 "c-parse.y"
  2118. { tree rtl_exp;
  2119.           if (pedantic)
  2120.             pedwarn ("ANSI C forbids braced-groups within expressions");
  2121.           pop_iterator_stack ();
  2122.           pop_label_level ();
  2123.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  2124.           /* The statements have side effects, so the group does.  */
  2125.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  2126.  
  2127.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  2128.             {
  2129.               /* Make a BIND_EXPR for the BLOCK already made.  */
  2130.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  2131.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  2132.               /* Remove the block from the tree at this point.
  2133.              It gets put back at the proper place
  2134.              when the BIND_EXPR is expanded.  */
  2135.               delete_block (yyvsp[-1].ttype);
  2136.             }
  2137.           else
  2138.             yyval.ttype = yyvsp[-1].ttype;
  2139.         ;
  2140.     break;}
  2141. case 85:
  2142. #line 680 "c-parse.y"
  2143. { yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2144.     break;}
  2145. case 86:
  2146. #line 682 "c-parse.y"
  2147. { yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2148.     break;}
  2149. case 87:
  2150. #line 684 "c-parse.y"
  2151. {
  2152.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2153.         ;
  2154.     break;}
  2155. case 88:
  2156. #line 688 "c-parse.y"
  2157. {
  2158.                   tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
  2159.  
  2160.                     yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2161.         ;
  2162.     break;}
  2163. case 89:
  2164. #line 694 "c-parse.y"
  2165. { yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2166.     break;}
  2167. case 90:
  2168. #line 696 "c-parse.y"
  2169. { yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2170.     break;}
  2171. case 92:
  2172. #line 703 "c-parse.y"
  2173. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2174.     break;}
  2175. case 95:
  2176. #line 712 "c-parse.y"
  2177. { c_mark_varargs ();
  2178.           if (pedantic)
  2179.             pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
  2180.     break;}
  2181. case 96:
  2182. #line 722 "c-parse.y"
  2183. { ;
  2184.     break;}
  2185. case 101:
  2186. #line 734 "c-parse.y"
  2187. { current_declspecs = TREE_VALUE (declspec_stack);
  2188.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2189.           declspec_stack = TREE_CHAIN (declspec_stack);
  2190.           resume_momentary (yyvsp[-2].itype); ;
  2191.     break;}
  2192. case 102:
  2193. #line 739 "c-parse.y"
  2194. { current_declspecs = TREE_VALUE (declspec_stack);    
  2195.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2196.           declspec_stack = TREE_CHAIN (declspec_stack);
  2197.           resume_momentary (yyvsp[-2].itype); ;
  2198.     break;}
  2199. case 103:
  2200. #line 744 "c-parse.y"
  2201. { shadow_tag_warned (yyvsp[-1].ttype, 1);
  2202.           pedwarn ("empty declaration"); ;
  2203.     break;}
  2204. case 104:
  2205. #line 747 "c-parse.y"
  2206. { pedwarn ("empty declaration"); ;
  2207.     break;}
  2208. case 105:
  2209. #line 756 "c-parse.y"
  2210. { ;
  2211.     break;}
  2212. case 110:
  2213. #line 771 "c-parse.y"
  2214. { yyval.itype = suspend_momentary ();
  2215.           pending_xref_error ();
  2216.           declspec_stack = tree_cons (prefix_attributes,
  2217.                           current_declspecs,
  2218.                           declspec_stack);
  2219.           current_declspecs = yyvsp[0].ttype; 
  2220.           prefix_attributes = NULL_TREE; ;
  2221.     break;}
  2222. case 111:
  2223. #line 781 "c-parse.y"
  2224. { prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
  2225.     break;}
  2226. case 112:
  2227. #line 786 "c-parse.y"
  2228. { current_declspecs = TREE_VALUE (declspec_stack);
  2229.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2230.           declspec_stack = TREE_CHAIN (declspec_stack);
  2231.           resume_momentary (yyvsp[-2].itype); ;
  2232.     break;}
  2233. case 113:
  2234. #line 791 "c-parse.y"
  2235. { current_declspecs = TREE_VALUE (declspec_stack);
  2236.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2237.           declspec_stack = TREE_CHAIN (declspec_stack);
  2238.           resume_momentary (yyvsp[-2].itype); ;
  2239.     break;}
  2240. case 114:
  2241. #line 796 "c-parse.y"
  2242. { current_declspecs = TREE_VALUE (declspec_stack);
  2243.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2244.           declspec_stack = TREE_CHAIN (declspec_stack);
  2245.           resume_momentary (yyvsp[-1].itype); ;
  2246.     break;}
  2247. case 115:
  2248. #line 801 "c-parse.y"
  2249. { current_declspecs = TREE_VALUE (declspec_stack);
  2250.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2251.           declspec_stack = TREE_CHAIN (declspec_stack);
  2252.           resume_momentary (yyvsp[-1].itype); ;
  2253.     break;}
  2254. case 116:
  2255. #line 806 "c-parse.y"
  2256. { shadow_tag (yyvsp[-1].ttype); ;
  2257.     break;}
  2258. case 117:
  2259. #line 808 "c-parse.y"
  2260. { pedwarn ("empty declaration"); ;
  2261.     break;}
  2262. case 118:
  2263. #line 817 "c-parse.y"
  2264. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2265.     break;}
  2266. case 119:
  2267. #line 819 "c-parse.y"
  2268. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2269.     break;}
  2270. case 120:
  2271. #line 823 "c-parse.y"
  2272. { yyval.ttype = NULL_TREE; ;
  2273.     break;}
  2274. case 121:
  2275. #line 825 "c-parse.y"
  2276. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2277.     break;}
  2278. case 122:
  2279. #line 827 "c-parse.y"
  2280. { if (extra_warnings)
  2281.             warning ("`%s' is not at beginning of declaration",
  2282.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2283.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2284.     break;}
  2285. case 123:
  2286. #line 839 "c-parse.y"
  2287. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  2288.           TREE_STATIC (yyval.ttype) = 1; ;
  2289.     break;}
  2290. case 124:
  2291. #line 842 "c-parse.y"
  2292. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2293.     break;}
  2294. case 125:
  2295. #line 844 "c-parse.y"
  2296. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2297.           TREE_STATIC (yyval.ttype) = 1; ;
  2298.     break;}
  2299. case 126:
  2300. #line 847 "c-parse.y"
  2301. { if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
  2302.             warning ("`%s' is not at beginning of declaration",
  2303.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2304.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2305.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  2306.     break;}
  2307. case 127:
  2308. #line 861 "c-parse.y"
  2309. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2310.     break;}
  2311. case 128:
  2312. #line 863 "c-parse.y"
  2313. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2314.     break;}
  2315. case 129:
  2316. #line 867 "c-parse.y"
  2317. { yyval.ttype = NULL_TREE; ;
  2318.     break;}
  2319. case 130:
  2320. #line 869 "c-parse.y"
  2321. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2322.     break;}
  2323. case 133:
  2324. #line 879 "c-parse.y"
  2325. { /* For a typedef name, record the meaning, not the name.
  2326.              In case of `foo foo, bar;'.  */
  2327.           yyval.ttype = lookup_name (yyvsp[0].ttype); ;
  2328.     break;}
  2329. case 134:
  2330. #line 883 "c-parse.y"
  2331. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
  2332.     break;}
  2333. case 135:
  2334. #line 885 "c-parse.y"
  2335. { yyval.ttype = groktypename (yyvsp[-1].ttype); ;
  2336.     break;}
  2337. case 143:
  2338. #line 907 "c-parse.y"
  2339. { yyval.ttype = NULL_TREE; ;
  2340.     break;}
  2341. case 144:
  2342. #line 909 "c-parse.y"
  2343. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
  2344.           yyval.ttype = yyvsp[-1].ttype;
  2345.         ;
  2346.     break;}
  2347. case 145:
  2348. #line 916 "c-parse.y"
  2349. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
  2350.                       yyvsp[-1].ttype, prefix_attributes);
  2351.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2352.     break;}
  2353. case 146:
  2354. #line 921 "c-parse.y"
  2355. { finish_init ();
  2356.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2357.     break;}
  2358. case 147:
  2359. #line 924 "c-parse.y"
  2360. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
  2361.                        yyvsp[0].ttype, prefix_attributes);
  2362.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); 
  2363.                 ;
  2364.     break;}
  2365. case 148:
  2366. #line 932 "c-parse.y"
  2367. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
  2368.                       yyvsp[-1].ttype, prefix_attributes);
  2369.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2370.     break;}
  2371. case 149:
  2372. #line 937 "c-parse.y"
  2373. { finish_init ();
  2374.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype, prefix_attributes);
  2375.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2376.     break;}
  2377. case 150:
  2378. #line 941 "c-parse.y"
  2379. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
  2380.                        yyvsp[0].ttype, prefix_attributes);
  2381.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2382.     break;}
  2383. case 151:
  2384. #line 949 "c-parse.y"
  2385. { yyval.ttype = NULL_TREE; ;
  2386.     break;}
  2387. case 152:
  2388. #line 951 "c-parse.y"
  2389. { yyval.ttype = yyvsp[0].ttype; ;
  2390.     break;}
  2391. case 153:
  2392. #line 956 "c-parse.y"
  2393. { yyval.ttype = yyvsp[0].ttype; ;
  2394.     break;}
  2395. case 154:
  2396. #line 958 "c-parse.y"
  2397. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2398.     break;}
  2399. case 155:
  2400. #line 963 "c-parse.y"
  2401. { yyval.ttype = yyvsp[-2].ttype; ;
  2402.     break;}
  2403. case 156:
  2404. #line 968 "c-parse.y"
  2405. { yyval.ttype = yyvsp[0].ttype; ;
  2406.     break;}
  2407. case 157:
  2408. #line 970 "c-parse.y"
  2409. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2410.     break;}
  2411. case 158:
  2412. #line 975 "c-parse.y"
  2413. { yyval.ttype = NULL_TREE; ;
  2414.     break;}
  2415. case 159:
  2416. #line 977 "c-parse.y"
  2417. { yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
  2418.     break;}
  2419. case 160:
  2420. #line 979 "c-parse.y"
  2421. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  2422.     break;}
  2423. case 161:
  2424. #line 981 "c-parse.y"
  2425. { yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  2426.     break;}
  2427. case 162:
  2428. #line 983 "c-parse.y"
  2429. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2430.     break;}
  2431. case 168:
  2432. #line 1001 "c-parse.y"
  2433. { really_start_incremental_init (NULL_TREE);
  2434.           /* Note that the call to clear_momentary
  2435.              is in process_init_element.  */
  2436.           push_momentary (); ;
  2437.     break;}
  2438. case 169:
  2439. #line 1006 "c-parse.y"
  2440. { yyval.ttype = pop_init_level (0);
  2441.           if (yyval.ttype == error_mark_node
  2442.               && ! (yychar == STRING || yychar == CONSTANT))
  2443.             pop_momentary ();
  2444.           else
  2445.             pop_momentary_nofree (); ;
  2446.     break;}
  2447. case 170:
  2448. #line 1014 "c-parse.y"
  2449. { yyval.ttype = error_mark_node; ;
  2450.     break;}
  2451. case 171:
  2452. #line 1020 "c-parse.y"
  2453. { if (pedantic)
  2454.             pedwarn ("ANSI C forbids empty initializer braces"); ;
  2455.     break;}
  2456. case 175:
  2457. #line 1034 "c-parse.y"
  2458. { process_init_element (yyvsp[0].ttype); ;
  2459.     break;}
  2460. case 176:
  2461. #line 1036 "c-parse.y"
  2462. { push_init_level (0); ;
  2463.     break;}
  2464. case 177:
  2465. #line 1038 "c-parse.y"
  2466. { process_init_element (pop_init_level (0)); ;
  2467.     break;}
  2468. case 179:
  2469. #line 1044 "c-parse.y"
  2470. { set_init_index (yyvsp[-4].ttype, yyvsp[-2].ttype); ;
  2471.     break;}
  2472. case 181:
  2473. #line 1047 "c-parse.y"
  2474. { set_init_index (yyvsp[-2].ttype, NULL_TREE); ;
  2475.     break;}
  2476. case 183:
  2477. #line 1050 "c-parse.y"
  2478. { set_init_index (yyvsp[-1].ttype, NULL_TREE); ;
  2479.     break;}
  2480. case 185:
  2481. #line 1053 "c-parse.y"
  2482. { set_init_label (yyvsp[-1].ttype); ;
  2483.     break;}
  2484. case 187:
  2485. #line 1056 "c-parse.y"
  2486. { set_init_label (yyvsp[-1].ttype); ;
  2487.     break;}
  2488. case 189:
  2489. #line 1062 "c-parse.y"
  2490. { push_c_function_context ();
  2491.           if (! start_function (current_declspecs, yyvsp[0].ttype,
  2492.                     prefix_attributes, NULL_TREE, 1))
  2493.             {
  2494.               pop_c_function_context ();
  2495.               YYERROR1;
  2496.             }
  2497.           reinit_parse_for_function (); ;
  2498.     break;}
  2499. case 190:
  2500. #line 1071 "c-parse.y"
  2501. { store_parm_decls (); ;
  2502.     break;}
  2503. case 191:
  2504. #line 1079 "c-parse.y"
  2505. { finish_function (1);
  2506.           pop_c_function_context (); ;
  2507.     break;}
  2508. case 192:
  2509. #line 1085 "c-parse.y"
  2510. { push_c_function_context ();
  2511.           if (! start_function (current_declspecs, yyvsp[0].ttype,
  2512.                     prefix_attributes, NULL_TREE, 1))
  2513.             {
  2514.               pop_c_function_context ();
  2515.               YYERROR1;
  2516.             }
  2517.           reinit_parse_for_function (); ;
  2518.     break;}
  2519. case 193:
  2520. #line 1094 "c-parse.y"
  2521. { store_parm_decls (); ;
  2522.     break;}
  2523. case 194:
  2524. #line 1102 "c-parse.y"
  2525. { finish_function (1);
  2526.           pop_c_function_context (); ;
  2527.     break;}
  2528. case 197:
  2529. #line 1118 "c-parse.y"
  2530. { yyval.ttype = yyvsp[-1].ttype; ;
  2531.     break;}
  2532. case 198:
  2533. #line 1120 "c-parse.y"
  2534. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2535.     break;}
  2536. case 199:
  2537. #line 1125 "c-parse.y"
  2538. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2539.     break;}
  2540. case 200:
  2541. #line 1127 "c-parse.y"
  2542. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2543.     break;}
  2544. case 201:
  2545. #line 1129 "c-parse.y"
  2546. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2547.     break;}
  2548. case 202:
  2549. #line 1131 "c-parse.y"
  2550. { yyval.ttype = yyvsp[0].ttype; ;
  2551.     break;}
  2552. case 204:
  2553. #line 1142 "c-parse.y"
  2554. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2555.     break;}
  2556. case 205:
  2557. #line 1147 "c-parse.y"
  2558. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2559.     break;}
  2560. case 206:
  2561. #line 1149 "c-parse.y"
  2562. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2563.     break;}
  2564. case 207:
  2565. #line 1151 "c-parse.y"
  2566. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2567.     break;}
  2568. case 208:
  2569. #line 1153 "c-parse.y"
  2570. { yyval.ttype = yyvsp[0].ttype; ;
  2571.     break;}
  2572. case 210:
  2573. #line 1162 "c-parse.y"
  2574. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2575.     break;}
  2576. case 211:
  2577. #line 1167 "c-parse.y"
  2578. { yyval.ttype = yyvsp[-1].ttype; ;
  2579.     break;}
  2580. case 212:
  2581. #line 1169 "c-parse.y"
  2582. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2583.     break;}
  2584. case 213:
  2585. #line 1171 "c-parse.y"
  2586. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2587.     break;}
  2588. case 214:
  2589. #line 1173 "c-parse.y"
  2590. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2591.     break;}
  2592. case 215:
  2593. #line 1175 "c-parse.y"
  2594. { yyval.ttype = yyvsp[0].ttype; ;
  2595.     break;}
  2596. case 217:
  2597. #line 1181 "c-parse.y"
  2598. { yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
  2599.           /* Start scope of tag before parsing components.  */
  2600.         ;
  2601.     break;}
  2602. case 218:
  2603. #line 1185 "c-parse.y"
  2604. { yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2605.     break;}
  2606. case 219:
  2607. #line 1187 "c-parse.y"
  2608. { yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
  2609.                       yyvsp[-2].ttype, yyvsp[0].ttype);
  2610.         ;
  2611.     break;}
  2612. case 220:
  2613. #line 1191 "c-parse.y"
  2614. { yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
  2615.     break;}
  2616. case 221:
  2617. #line 1193 "c-parse.y"
  2618. { yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
  2619.     break;}
  2620. case 222:
  2621. #line 1195 "c-parse.y"
  2622. { yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2623.     break;}
  2624. case 223:
  2625. #line 1197 "c-parse.y"
  2626. { yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
  2627.                       yyvsp[-2].ttype, yyvsp[0].ttype);
  2628.         ;
  2629.     break;}
  2630. case 224:
  2631. #line 1201 "c-parse.y"
  2632. { yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
  2633.     break;}
  2634. case 225:
  2635. #line 1203 "c-parse.y"
  2636. { yyvsp[0].itype = suspend_momentary ();
  2637.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  2638.     break;}
  2639. case 226:
  2640. #line 1206 "c-parse.y"
  2641. { yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), yyvsp[0].ttype);
  2642.           resume_momentary (yyvsp[-5].itype); ;
  2643.     break;}
  2644. case 227:
  2645. #line 1209 "c-parse.y"
  2646. { yyvsp[0].itype = suspend_momentary ();
  2647.           yyval.ttype = start_enum (NULL_TREE); ;
  2648.     break;}
  2649. case 228:
  2650. #line 1212 "c-parse.y"
  2651. { yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype), yyvsp[0].ttype);
  2652.           resume_momentary (yyvsp[-5].itype); ;
  2653.     break;}
  2654. case 229:
  2655. #line 1215 "c-parse.y"
  2656. { yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
  2657.     break;}
  2658. case 233:
  2659. #line 1226 "c-parse.y"
  2660. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  2661.     break;}
  2662. case 234:
  2663. #line 1231 "c-parse.y"
  2664. { yyval.ttype = yyvsp[0].ttype; ;
  2665.     break;}
  2666. case 235:
  2667. #line 1233 "c-parse.y"
  2668. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  2669.           pedwarn ("no semicolon at end of struct or union"); ;
  2670.     break;}
  2671. case 236:
  2672. #line 1238 "c-parse.y"
  2673. { yyval.ttype = NULL_TREE; ;
  2674.     break;}
  2675. case 237:
  2676. #line 1240 "c-parse.y"
  2677. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  2678.     break;}
  2679. case 238:
  2680. #line 1242 "c-parse.y"
  2681. { if (pedantic)
  2682.             pedwarn ("extra semicolon in struct or union specified"); ;
  2683.     break;}
  2684. case 239:
  2685. #line 1257 "c-parse.y"
  2686. { yyval.ttype = yyvsp[0].ttype;
  2687.           current_declspecs = TREE_VALUE (declspec_stack);
  2688.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2689.           declspec_stack = TREE_CHAIN (declspec_stack);
  2690.           resume_momentary (yyvsp[-1].itype); ;
  2691.     break;}
  2692. case 240:
  2693. #line 1263 "c-parse.y"
  2694. { if (pedantic)
  2695.             pedwarn ("ANSI C forbids member declarations with no members");
  2696.           shadow_tag(yyvsp[0].ttype);
  2697.           yyval.ttype = NULL_TREE; ;
  2698.     break;}
  2699. case 241:
  2700. #line 1268 "c-parse.y"
  2701. { yyval.ttype = yyvsp[0].ttype;
  2702.           current_declspecs = TREE_VALUE (declspec_stack);
  2703.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  2704.           declspec_stack = TREE_CHAIN (declspec_stack);
  2705.           resume_momentary (yyvsp[-1].itype); ;
  2706.     break;}
  2707. case 242:
  2708. #line 1274 "c-parse.y"
  2709. { if (pedantic)
  2710.             pedwarn ("ANSI C forbids member declarations with no members");
  2711.           shadow_tag(yyvsp[0].ttype);
  2712.           yyval.ttype = NULL_TREE; ;
  2713.     break;}
  2714. case 243:
  2715. #line 1279 "c-parse.y"
  2716. { yyval.ttype = NULL_TREE; ;
  2717.     break;}
  2718. case 245:
  2719. #line 1285 "c-parse.y"
  2720. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2721.     break;}
  2722. case 246:
  2723. #line 1290 "c-parse.y"
  2724. { yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
  2725.           decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  2726.     break;}
  2727. case 247:
  2728. #line 1294 "c-parse.y"
  2729. { yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
  2730.           decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  2731.     break;}
  2732. case 248:
  2733. #line 1297 "c-parse.y"
  2734. { yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  2735.           decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
  2736.     break;}
  2737. case 250:
  2738. #line 1309 "c-parse.y"
  2739. { yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
  2740.     break;}
  2741. case 251:
  2742. #line 1311 "c-parse.y"
  2743. { yyval.ttype = error_mark_node; ;
  2744.     break;}
  2745. case 252:
  2746. #line 1317 "c-parse.y"
  2747. { yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
  2748.     break;}
  2749. case 253:
  2750. #line 1319 "c-parse.y"
  2751. { yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2752.     break;}
  2753. case 254:
  2754. #line 1324 "c-parse.y"
  2755. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2756.     break;}
  2757. case 255:
  2758. #line 1326 "c-parse.y"
  2759. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2760.     break;}
  2761. case 256:
  2762. #line 1331 "c-parse.y"
  2763. { yyval.ttype = NULL_TREE; ;
  2764.     break;}
  2765. case 258:
  2766. #line 1337 "c-parse.y"
  2767. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2768.     break;}
  2769. case 259:
  2770. #line 1339 "c-parse.y"
  2771. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2772.     break;}
  2773. case 260:
  2774. #line 1344 "c-parse.y"
  2775. { yyval.ttype = NULL_TREE; ;
  2776.     break;}
  2777. case 261:
  2778. #line 1346 "c-parse.y"
  2779. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2780.     break;}
  2781. case 262:
  2782. #line 1351 "c-parse.y"
  2783. { yyval.ttype = yyvsp[-1].ttype; ;
  2784.     break;}
  2785. case 263:
  2786. #line 1354 "c-parse.y"
  2787. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2788.     break;}
  2789. case 264:
  2790. #line 1356 "c-parse.y"
  2791. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  2792.     break;}
  2793. case 265:
  2794. #line 1358 "c-parse.y"
  2795. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2796.     break;}
  2797. case 266:
  2798. #line 1360 "c-parse.y"
  2799. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2800.     break;}
  2801. case 267:
  2802. #line 1362 "c-parse.y"
  2803. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2804.     break;}
  2805. case 268:
  2806. #line 1364 "c-parse.y"
  2807. { yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2808.     break;}
  2809. case 269:
  2810. #line 1366 "c-parse.y"
  2811. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  2812.     break;}
  2813. case 270:
  2814. #line 1368 "c-parse.y"
  2815. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  2816.     break;}
  2817. case 271:
  2818. #line 1370 "c-parse.y"
  2819. { yyval.ttype = yyvsp[0].ttype; ;
  2820.     break;}
  2821. case 278:
  2822. #line 1392 "c-parse.y"
  2823. { emit_line_note (input_filename, lineno);
  2824.           pushlevel (0);
  2825.           clear_last_expr ();
  2826.           push_momentary ();
  2827.           expand_start_bindings (0);
  2828.         ;
  2829.     break;}
  2830. case 280:
  2831. #line 1405 "c-parse.y"
  2832. { if (pedantic)
  2833.             pedwarn ("ANSI C forbids label declarations"); ;
  2834.     break;}
  2835. case 283:
  2836. #line 1416 "c-parse.y"
  2837. { tree link;
  2838.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  2839.             {
  2840.               tree label = shadow_label (TREE_VALUE (link));
  2841.               C_DECLARED_LABEL_FLAG (label) = 1;
  2842.               declare_nonlocal_label (label);
  2843.             }
  2844.         ;
  2845.     break;}
  2846. case 284:
  2847. #line 1430 "c-parse.y"
  2848. {;
  2849.     break;}
  2850. case 286:
  2851. #line 1435 "c-parse.y"
  2852. { yyval.ttype = convert (void_type_node, integer_zero_node); ;
  2853.     break;}
  2854. case 287:
  2855. #line 1437 "c-parse.y"
  2856. { emit_line_note (input_filename, lineno);
  2857.           expand_end_bindings (getdecls (), 1, 0);
  2858.           yyval.ttype = poplevel (1, 1, 0);
  2859.           if (yychar == CONSTANT || yychar == STRING)
  2860.             pop_momentary_nofree ();
  2861.           else
  2862.             pop_momentary (); ;
  2863.     break;}
  2864. case 288:
  2865. #line 1445 "c-parse.y"
  2866. { emit_line_note (input_filename, lineno);
  2867.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  2868.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  2869.           if (yychar == CONSTANT || yychar == STRING)
  2870.             pop_momentary_nofree ();
  2871.           else
  2872.             pop_momentary (); ;
  2873.     break;}
  2874. case 289:
  2875. #line 1453 "c-parse.y"
  2876. { emit_line_note (input_filename, lineno);
  2877.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  2878.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  2879.           if (yychar == CONSTANT || yychar == STRING)
  2880.             pop_momentary_nofree ();
  2881.           else
  2882.             pop_momentary (); ;
  2883.     break;}
  2884. case 292:
  2885. #line 1473 "c-parse.y"
  2886. { emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2887.           expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0);
  2888.           yyval.itype = stmt_count;
  2889.           if_stmt_file = yyvsp[-5].filename;
  2890.           if_stmt_line = yyvsp[-4].lineno;
  2891.           position_after_white_space (); ;
  2892.     break;}
  2893. case 293:
  2894. #line 1486 "c-parse.y"
  2895. { stmt_count++;
  2896.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  2897.           /* See comment in `while' alternative, above.  */
  2898.           emit_nop ();
  2899.           expand_start_loop_continue_elsewhere (1);
  2900.           position_after_white_space (); ;
  2901.     break;}
  2902. case 294:
  2903. #line 1493 "c-parse.y"
  2904. { expand_loop_continue_here (); ;
  2905.     break;}
  2906. case 295:
  2907. #line 1497 "c-parse.y"
  2908. { yyval.filename = input_filename; ;
  2909.     break;}
  2910. case 296:
  2911. #line 1501 "c-parse.y"
  2912. { yyval.lineno = lineno; ;
  2913.     break;}
  2914. case 297:
  2915. #line 1506 "c-parse.y"
  2916. { ;
  2917.     break;}
  2918. case 298:
  2919. #line 1511 "c-parse.y"
  2920. { ;
  2921.     break;}
  2922. case 299:
  2923. #line 1516 "c-parse.y"
  2924. { ;
  2925.     break;}
  2926. case 301:
  2927. #line 1522 "c-parse.y"
  2928. { int next;
  2929.           position_after_white_space ();
  2930.           next = getc (finput);
  2931.           ungetc (next, finput);
  2932.           if (pedantic && next == '}')
  2933.             pedwarn ("ANSI C forbids label at end of compound statement");
  2934.         ;
  2935.     break;}
  2936. case 302:
  2937. #line 1534 "c-parse.y"
  2938. { stmt_count++; ;
  2939.     break;}
  2940. case 304:
  2941. #line 1537 "c-parse.y"
  2942. { stmt_count++;
  2943.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2944. /* It appears that this should not be done--that a non-lvalue array
  2945.    shouldn't get an error if the value isn't used.
  2946.    Section 3.2.2.1 says that an array lvalue gets converted to a pointer
  2947.    if it appears as a top-level expression,
  2948.    but says nothing about non-lvalue arrays.  */
  2949. #if 0
  2950.           /* Call default_conversion to get an error
  2951.              on referring to a register array if pedantic.  */
  2952.           if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
  2953.               || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
  2954.             yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
  2955. #endif
  2956.           iterator_expand (yyvsp[-1].ttype);
  2957.           clear_momentary (); ;
  2958.     break;}
  2959. case 305:
  2960. #line 1554 "c-parse.y"
  2961. { expand_start_else ();
  2962.           yyvsp[-1].itype = stmt_count;
  2963.           position_after_white_space (); ;
  2964.     break;}
  2965. case 306:
  2966. #line 1558 "c-parse.y"
  2967. { expand_end_cond ();
  2968.           if (extra_warnings && stmt_count == yyvsp[-3].itype)
  2969.             warning ("empty body in an else-statement"); ;
  2970.     break;}
  2971. case 307:
  2972. #line 1562 "c-parse.y"
  2973. { expand_end_cond ();
  2974.           /* This warning is here instead of in simple_if, because we
  2975.              do not want a warning if an empty if is followed by an
  2976.              else statement.  Increment stmt_count so we don't
  2977.              give a second error if this is a nested `if'.  */
  2978.           if (extra_warnings && stmt_count++ == yyvsp[0].itype)
  2979.             warning_with_file_and_line (if_stmt_file, if_stmt_line,
  2980.                         "empty body in an if-statement"); ;
  2981.     break;}
  2982. case 308:
  2983. #line 1574 "c-parse.y"
  2984. { expand_end_cond (); ;
  2985.     break;}
  2986. case 309:
  2987. #line 1576 "c-parse.y"
  2988. { stmt_count++;
  2989.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  2990.           /* The emit_nop used to come before emit_line_note,
  2991.              but that made the nop seem like part of the preceding line.
  2992.              And that was confusing when the preceding line was
  2993.              inside of an if statement and was not really executed.
  2994.              I think it ought to work to put the nop after the line number.
  2995.              We will see.  --rms, July 15, 1991.  */
  2996.           emit_nop (); ;
  2997.     break;}
  2998. case 310:
  2999. #line 1586 "c-parse.y"
  3000. { /* Don't start the loop till we have succeeded
  3001.              in parsing the end test.  This is to make sure
  3002.              that we end every loop we start.  */
  3003.           expand_start_loop (1);
  3004.           emit_line_note (input_filename, lineno);
  3005.           expand_exit_loop_if_false (NULL_PTR,
  3006.                          truthvalue_conversion (yyvsp[-1].ttype));
  3007.           position_after_white_space (); ;
  3008.     break;}
  3009. case 311:
  3010. #line 1595 "c-parse.y"
  3011. { expand_end_loop (); ;
  3012.     break;}
  3013. case 312:
  3014. #line 1598 "c-parse.y"
  3015. { emit_line_note (input_filename, lineno);
  3016.           expand_exit_loop_if_false (NULL_PTR,
  3017.                          truthvalue_conversion (yyvsp[-2].ttype));
  3018.           expand_end_loop ();
  3019.           clear_momentary (); ;
  3020.     break;}
  3021. case 313:
  3022. #line 1605 "c-parse.y"
  3023. { expand_end_loop ();
  3024.           clear_momentary (); ;
  3025.     break;}
  3026. case 314:
  3027. #line 1609 "c-parse.y"
  3028. { stmt_count++;
  3029.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3030.           /* See comment in `while' alternative, above.  */
  3031.           emit_nop ();
  3032.           if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
  3033.           /* Next step is to call expand_start_loop_continue_elsewhere,
  3034.              but wait till after we parse the entire for (...).
  3035.              Otherwise, invalid input might cause us to call that
  3036.              fn without calling expand_end_loop.  */
  3037.         ;
  3038.     break;}
  3039. case 315:
  3040. #line 1621 "c-parse.y"
  3041. { yyvsp[0].lineno = lineno;
  3042.           yyval.filename = input_filename; ;
  3043.     break;}
  3044. case 316:
  3045. #line 1624 "c-parse.y"
  3046.           /* Start the loop.  Doing this after parsing
  3047.              all the expressions ensures we will end the loop.  */
  3048.           expand_start_loop_continue_elsewhere (1);
  3049.           /* Emit the end-test, with a line number.  */
  3050.           emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
  3051.           if (yyvsp[-4].ttype)
  3052.             expand_exit_loop_if_false (NULL_PTR,
  3053.                            truthvalue_conversion (yyvsp[-4].ttype));
  3054.           /* Don't let the tree nodes for $9 be discarded by
  3055.              clear_momentary during the parsing of the next stmt.  */
  3056.           push_momentary ();
  3057.           yyvsp[-3].lineno = lineno;
  3058.           yyvsp[-2].filename = input_filename;
  3059.           position_after_white_space (); ;
  3060.     break;}
  3061. case 317:
  3062. #line 1640 "c-parse.y"
  3063. { /* Emit the increment expression, with a line number.  */
  3064.           emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
  3065.           expand_loop_continue_here ();
  3066.           if (yyvsp[-3].ttype)
  3067.             c_expand_expr_stmt (yyvsp[-3].ttype);
  3068.           if (yychar == CONSTANT || yychar == STRING)
  3069.             pop_momentary_nofree ();
  3070.           else
  3071.             pop_momentary ();
  3072.           expand_end_loop (); ;
  3073.     break;}
  3074. case 318:
  3075. #line 1651 "c-parse.y"
  3076. { stmt_count++;
  3077.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3078.           c_expand_start_case (yyvsp[-1].ttype);
  3079.           /* Don't let the tree nodes for $3 be discarded by
  3080.              clear_momentary during the parsing of the next stmt.  */
  3081.           push_momentary ();
  3082.           position_after_white_space (); ;
  3083.     break;}
  3084. case 319:
  3085. #line 1659 "c-parse.y"
  3086. { expand_end_case (yyvsp[-3].ttype);
  3087.           if (yychar == CONSTANT || yychar == STRING)
  3088.             pop_momentary_nofree ();
  3089.           else
  3090.             pop_momentary (); ;
  3091.     break;}
  3092. case 320:
  3093. #line 1665 "c-parse.y"
  3094. { stmt_count++;
  3095.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3096.           if ( ! expand_exit_something ())
  3097.             error ("break statement not within loop or switch"); ;
  3098.     break;}
  3099. case 321:
  3100. #line 1670 "c-parse.y"
  3101. { stmt_count++;
  3102.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3103.           if (! expand_continue_loop (NULL_PTR))
  3104.             error ("continue statement not within a loop"); ;
  3105.     break;}
  3106. case 322:
  3107. #line 1675 "c-parse.y"
  3108. { stmt_count++;
  3109.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  3110.           c_expand_return (NULL_TREE); ;
  3111.     break;}
  3112. case 323:
  3113. #line 1679 "c-parse.y"
  3114. { stmt_count++;
  3115.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3116.           c_expand_return (yyvsp[-1].ttype); ;
  3117.     break;}
  3118. case 324:
  3119. #line 1683 "c-parse.y"
  3120. { stmt_count++;
  3121.           emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
  3122.           STRIP_NOPS (yyvsp[-2].ttype);
  3123.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  3124.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  3125.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  3126.             expand_asm (yyvsp[-2].ttype);
  3127.           else
  3128.             error ("argument of `asm' is not a constant string"); ;
  3129.     break;}
  3130. case 325:
  3131. #line 1694 "c-parse.y"
  3132. { stmt_count++;
  3133.           emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
  3134.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  3135.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  3136.                      input_filename, lineno); ;
  3137.     break;}
  3138. case 326:
  3139. #line 1701 "c-parse.y"
  3140. { stmt_count++;
  3141.           emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
  3142.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  3143.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  3144.                      input_filename, lineno); ;
  3145.     break;}
  3146. case 327:
  3147. #line 1709 "c-parse.y"
  3148. { stmt_count++;
  3149.           emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
  3150.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  3151.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  3152.                      input_filename, lineno); ;
  3153.     break;}
  3154. case 328:
  3155. #line 1715 "c-parse.y"
  3156. { tree decl;
  3157.           stmt_count++;
  3158.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3159.           decl = lookup_label (yyvsp[-1].ttype);
  3160.           if (decl != 0)
  3161.             {
  3162.               TREE_USED (decl) = 1;
  3163.               expand_goto (decl);
  3164.             }
  3165.         ;
  3166.     break;}
  3167. case 329:
  3168. #line 1726 "c-parse.y"
  3169. { stmt_count++;
  3170.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3171.           expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
  3172.     break;}
  3173. case 332:
  3174. #line 1739 "c-parse.y"
  3175. {
  3176.         /* The value returned by this action is  */
  3177.         /*      1 if everything is OK */ 
  3178.         /*      0 in case of error or already bound iterator */
  3179.  
  3180.         yyval.itype = 0;
  3181.         if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
  3182.           error ("invalid `for (ITERATOR)' syntax");
  3183.         else if (! ITERATOR_P (yyvsp[-1].ttype))
  3184.           error ("`%s' is not an iterator",
  3185.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3186.         else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
  3187.           error ("`for (%s)' inside expansion of same iterator",
  3188.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3189.         else
  3190.           {
  3191.         yyval.itype = 1;
  3192.         iterator_for_loop_start (yyvsp[-1].ttype);
  3193.           }
  3194.       ;
  3195.     break;}
  3196. case 333:
  3197. #line 1760 "c-parse.y"
  3198. {
  3199.         if (yyvsp[-1].itype)
  3200.           iterator_for_loop_end (yyvsp[-3].ttype);
  3201.       ;
  3202.     break;}
  3203. case 334:
  3204. #line 1795 "c-parse.y"
  3205. { register tree value = check_case_value (yyvsp[-1].ttype);
  3206.           register tree label
  3207.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3208.  
  3209.           stmt_count++;
  3210.  
  3211.           if (value != error_mark_node)
  3212.             {
  3213.               tree duplicate;
  3214.               int success = pushcase (value, convert_and_check,
  3215.                           label, &duplicate);
  3216.               if (success == 1)
  3217.             error ("case label not within a switch statement");
  3218.               else if (success == 2)
  3219.             {
  3220.               error ("duplicate case value");
  3221.               error_with_decl (duplicate, "this is the first entry for that value");
  3222.             }
  3223.               else if (success == 3)
  3224.             warning ("case value out of range");
  3225.               else if (success == 5)
  3226.             error ("case label within scope of cleanup or variable array");
  3227.             }
  3228.           position_after_white_space (); ;
  3229.     break;}
  3230. case 335:
  3231. #line 1820 "c-parse.y"
  3232. { register tree value1 = check_case_value (yyvsp[-3].ttype);
  3233.           register tree value2 = check_case_value (yyvsp[-1].ttype);
  3234.           register tree label
  3235.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3236.  
  3237.           stmt_count++;
  3238.  
  3239.           if (value1 != error_mark_node && value2 != error_mark_node)
  3240.             {
  3241.               tree duplicate;
  3242.               int success = pushcase_range (value1, value2,
  3243.                             convert_and_check, label,
  3244.                             &duplicate);
  3245.               if (success == 1)
  3246.             error ("case label not within a switch statement");
  3247.               else if (success == 2)
  3248.             {
  3249.               error ("duplicate case value");
  3250.               error_with_decl (duplicate, "this is the first entry for that value");
  3251.             }
  3252.               else if (success == 3)
  3253.             warning ("case value out of range");
  3254.               else if (success == 4)
  3255.             warning ("empty case range");
  3256.               else if (success == 5)
  3257.             error ("case label within scope of cleanup or variable array");
  3258.             }
  3259.           position_after_white_space (); ;
  3260.     break;}
  3261. case 336:
  3262. #line 1849 "c-parse.y"
  3263. {
  3264.           tree duplicate;
  3265.           register tree label
  3266.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3267.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  3268.           stmt_count++;
  3269.           if (success == 1)
  3270.             error ("default label not within a switch statement");
  3271.           else if (success == 2)
  3272.             {
  3273.               error ("multiple default labels in one switch");
  3274.               error_with_decl (duplicate, "this is the first default label");
  3275.             }
  3276.           position_after_white_space (); ;
  3277.     break;}
  3278. case 337:
  3279. #line 1864 "c-parse.y"
  3280. { tree label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  3281.           stmt_count++;
  3282.           emit_nop ();
  3283.           if (label)
  3284.             expand_label (label);
  3285.           position_after_white_space (); ;
  3286.     break;}
  3287. case 338:
  3288. #line 1876 "c-parse.y"
  3289. { emit_line_note (input_filename, lineno);
  3290.           yyval.ttype = NULL_TREE; ;
  3291.     break;}
  3292. case 339:
  3293. #line 1879 "c-parse.y"
  3294. { emit_line_note (input_filename, lineno); ;
  3295.     break;}
  3296. case 340:
  3297. #line 1884 "c-parse.y"
  3298. { yyval.ttype = NULL_TREE; ;
  3299.     break;}
  3300. case 342:
  3301. #line 1891 "c-parse.y"
  3302. { yyval.ttype = NULL_TREE; ;
  3303.     break;}
  3304. case 345:
  3305. #line 1898 "c-parse.y"
  3306. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3307.     break;}
  3308. case 346:
  3309. #line 1903 "c-parse.y"
  3310. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3311.     break;}
  3312. case 347:
  3313. #line 1908 "c-parse.y"
  3314. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
  3315.     break;}
  3316. case 348:
  3317. #line 1910 "c-parse.y"
  3318. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
  3319.     break;}
  3320. case 349:
  3321. #line 1916 "c-parse.y"
  3322. { pushlevel (0);
  3323.           clear_parm_order ();
  3324.           declare_parm_level (0); ;
  3325.     break;}
  3326. case 350:
  3327. #line 1920 "c-parse.y"
  3328. { yyval.ttype = yyvsp[0].ttype;
  3329.           parmlist_tags_warning ();
  3330.           poplevel (0, 0, 0); ;
  3331.     break;}
  3332. case 352:
  3333. #line 1928 "c-parse.y"
  3334. { tree parm;
  3335.           if (pedantic)
  3336.             pedwarn ("ANSI C forbids forward parameter declarations");
  3337.           /* Mark the forward decls as such.  */
  3338.           for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
  3339.             TREE_ASM_WRITTEN (parm) = 1;
  3340.           clear_parm_order (); ;
  3341.     break;}
  3342. case 353:
  3343. #line 1936 "c-parse.y"
  3344. { yyval.ttype = yyvsp[0].ttype; ;
  3345.     break;}
  3346. case 354:
  3347. #line 1938 "c-parse.y"
  3348. { yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
  3349.     break;}
  3350. case 355:
  3351. #line 1944 "c-parse.y"
  3352. { yyval.ttype = get_parm_info (0); ;
  3353.     break;}
  3354. case 356:
  3355. #line 1946 "c-parse.y"
  3356. { yyval.ttype = get_parm_info (0);
  3357.           /* Gcc used to allow this as an extension.  However, it does
  3358.              not work for all targets, and thus has been disabled.
  3359.              Also, since func (...) and func () are indistinguishable,
  3360.              it caused problems with the code in expand_builtin which
  3361.              tries to verify that BUILT_IN_NEXT_ARG is being used
  3362.              correctly.  */
  3363.           error ("ANSI C requires a named argument before `...'");
  3364.         ;
  3365.     break;}
  3366. case 357:
  3367. #line 1956 "c-parse.y"
  3368. { yyval.ttype = get_parm_info (1); ;
  3369.     break;}
  3370. case 358:
  3371. #line 1958 "c-parse.y"
  3372. { yyval.ttype = get_parm_info (0); ;
  3373.     break;}
  3374. case 359:
  3375. #line 1963 "c-parse.y"
  3376. { push_parm_decl (yyvsp[0].ttype); ;
  3377.     break;}
  3378. case 360:
  3379. #line 1965 "c-parse.y"
  3380. { push_parm_decl (yyvsp[0].ttype); ;
  3381.     break;}
  3382. case 361:
  3383. #line 1972 "c-parse.y"
  3384. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3385.                              yyvsp[-1].ttype),
  3386.                     build_tree_list (prefix_attributes,
  3387.                              yyvsp[0].ttype));
  3388.           current_declspecs = TREE_VALUE (declspec_stack);
  3389.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3390.           declspec_stack = TREE_CHAIN (declspec_stack);
  3391.           resume_momentary (yyvsp[-2].itype); ;
  3392.     break;}
  3393. case 362:
  3394. #line 1981 "c-parse.y"
  3395. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3396.                              yyvsp[-1].ttype),
  3397.                     build_tree_list (prefix_attributes,
  3398.                              yyvsp[0].ttype)); 
  3399.           current_declspecs = TREE_VALUE (declspec_stack);
  3400.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3401.           declspec_stack = TREE_CHAIN (declspec_stack);
  3402.           resume_momentary (yyvsp[-2].itype); ;
  3403.     break;}
  3404. case 363:
  3405. #line 1990 "c-parse.y"
  3406. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3407.                              yyvsp[-1].ttype),
  3408.                     build_tree_list (prefix_attributes,
  3409.                              yyvsp[0].ttype));
  3410.           current_declspecs = TREE_VALUE (declspec_stack);
  3411.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3412.           declspec_stack = TREE_CHAIN (declspec_stack);
  3413.           resume_momentary (yyvsp[-2].itype); ;
  3414.     break;}
  3415. case 364:
  3416. #line 1999 "c-parse.y"
  3417. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3418.                              yyvsp[-1].ttype),
  3419.                     build_tree_list (prefix_attributes,
  3420.                              yyvsp[0].ttype));
  3421.           current_declspecs = TREE_VALUE (declspec_stack);
  3422.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3423.           declspec_stack = TREE_CHAIN (declspec_stack);
  3424.           resume_momentary (yyvsp[-2].itype);  ;
  3425.     break;}
  3426. case 365:
  3427. #line 2009 "c-parse.y"
  3428. { yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
  3429.                              yyvsp[-1].ttype),
  3430.                     build_tree_list (prefix_attributes,
  3431.                              yyvsp[0].ttype));
  3432.           current_declspecs = TREE_VALUE (declspec_stack);
  3433.           prefix_attributes = TREE_PURPOSE (declspec_stack);
  3434.           declspec_stack = TREE_CHAIN (declspec_stack);
  3435.           resume_momentary (yyvsp[-2].itype);  ;
  3436.     break;}
  3437. case 366:
  3438. #line 2023 "c-parse.y"
  3439. { pushlevel (0);
  3440.           clear_parm_order ();
  3441.           declare_parm_level (1); ;
  3442.     break;}
  3443. case 367:
  3444. #line 2027 "c-parse.y"
  3445. { yyval.ttype = yyvsp[0].ttype;
  3446.           parmlist_tags_warning ();
  3447.           poplevel (0, 0, 0); ;
  3448.     break;}
  3449. case 369:
  3450. #line 2035 "c-parse.y"
  3451. { tree t;
  3452.           for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
  3453.             if (TREE_VALUE (t) == NULL_TREE)
  3454.               error ("`...' in old-style identifier list");
  3455.           yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
  3456.     break;}
  3457. case 370:
  3458. #line 2045 "c-parse.y"
  3459. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3460.     break;}
  3461. case 371:
  3462. #line 2047 "c-parse.y"
  3463. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3464.     break;}
  3465. case 372:
  3466. #line 2053 "c-parse.y"
  3467. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3468.     break;}
  3469. case 373:
  3470. #line 2055 "c-parse.y"
  3471. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3472.     break;}
  3473. }
  3474.    /* the action file gets copied in in place of this dollarsign */
  3475. #line 480 "/usr/local/lib/bison.simple"
  3476.  
  3477.   yyvsp -= yylen;
  3478.   yyssp -= yylen;
  3479. #ifdef YYLSP_NEEDED
  3480.   yylsp -= yylen;
  3481. #endif
  3482.  
  3483. #if YYDEBUG != 0
  3484.   if (yydebug)
  3485.     {
  3486.       short *ssp1 = yyss - 1;
  3487.       fprintf (stderr, "state stack now");
  3488.       while (ssp1 != yyssp)
  3489.     fprintf (stderr, " %d", *++ssp1);
  3490.       fprintf (stderr, "\n");
  3491.     }
  3492. #endif
  3493.  
  3494.   *++yyvsp = yyval;
  3495.  
  3496. #ifdef YYLSP_NEEDED
  3497.   yylsp++;
  3498.   if (yylen == 0)
  3499.     {
  3500.       yylsp->first_line = yylloc.first_line;
  3501.       yylsp->first_column = yylloc.first_column;
  3502.       yylsp->last_line = (yylsp-1)->last_line;
  3503.       yylsp->last_column = (yylsp-1)->last_column;
  3504.       yylsp->text = 0;
  3505.     }
  3506.   else
  3507.     {
  3508.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  3509.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  3510.     }
  3511. #endif
  3512.  
  3513.   /* Now "shift" the result of the reduction.
  3514.      Determine what state that goes to,
  3515.      based on the state we popped back to
  3516.      and the rule number reduced by.  */
  3517.  
  3518.   yyn = yyr1[yyn];
  3519.  
  3520.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  3521.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  3522.     yystate = yytable[yystate];
  3523.   else
  3524.     yystate = yydefgoto[yyn - YYNTBASE];
  3525.  
  3526.   goto yynewstate;
  3527.  
  3528. yyerrlab:   /* here on detecting error */
  3529.  
  3530.   if (! yyerrstatus)
  3531.     /* If not already recovering from an error, report this error.  */
  3532.     {
  3533.       ++yynerrs;
  3534.  
  3535. #ifdef YYERROR_VERBOSE
  3536.       yyn = yypact[yystate];
  3537.  
  3538.       if (yyn > YYFLAG && yyn < YYLAST)
  3539.     {
  3540.       int size = 0;
  3541.       char *msg;
  3542.       int x, count;
  3543.  
  3544.       count = 0;
  3545.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  3546.       for (x = (yyn < 0 ? -yyn : 0);
  3547.            x < (sizeof(yytname) / sizeof(char *)); x++)
  3548.         if (yycheck[x + yyn] == x)
  3549.           size += strlen(yytname[x]) + 15, count++;
  3550.       msg = (char *) malloc(size + 15);
  3551.       if (msg != 0)
  3552.         {
  3553.           strcpy(msg, "parse error");
  3554.  
  3555.           if (count < 5)
  3556.         {
  3557.           count = 0;
  3558.           for (x = (yyn < 0 ? -yyn : 0);
  3559.                x < (sizeof(yytname) / sizeof(char *)); x++)
  3560.             if (yycheck[x + yyn] == x)
  3561.               {
  3562.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  3563.             strcat(msg, yytname[x]);
  3564.             strcat(msg, "'");
  3565.             count++;
  3566.               }
  3567.         }
  3568.           yyerror(msg);
  3569.           free(msg);
  3570.         }
  3571.       else
  3572.         yyerror ("parse error; also virtual memory exceeded");
  3573.     }
  3574.       else
  3575. #endif /* YYERROR_VERBOSE */
  3576.     yyerror("parse error");
  3577.     }
  3578.  
  3579.   goto yyerrlab1;
  3580. yyerrlab1:   /* here on error raised explicitly by an action */
  3581.  
  3582.   if (yyerrstatus == 3)
  3583.     {
  3584.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  3585.  
  3586.       /* return failure if at end of input */
  3587.       if (yychar == YYEOF)
  3588.     YYABORT;
  3589.  
  3590. #if YYDEBUG != 0
  3591.       if (yydebug)
  3592.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  3593. #endif
  3594.  
  3595.       yychar = YYEMPTY;
  3596.     }
  3597.  
  3598.   /* Else will try to reuse lookahead token
  3599.      after shifting the error token.  */
  3600.  
  3601.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  3602.  
  3603.   goto yyerrhandle;
  3604.  
  3605. yyerrdefault:  /* current state does not do anything special for the error token. */
  3606.  
  3607. #if 0
  3608.   /* This is wrong; only states that explicitly want error tokens
  3609.      should shift them.  */
  3610.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  3611.   if (yyn) goto yydefault;
  3612. #endif
  3613.  
  3614. yyerrpop:   /* pop the current state because it cannot handle the error token */
  3615.  
  3616.   if (yyssp == yyss) YYABORT;
  3617.   yyvsp--;
  3618.   yystate = *--yyssp;
  3619. #ifdef YYLSP_NEEDED
  3620.   yylsp--;
  3621. #endif
  3622.  
  3623. #if YYDEBUG != 0
  3624.   if (yydebug)
  3625.     {
  3626.       short *ssp1 = yyss - 1;
  3627.       fprintf (stderr, "Error: state stack now");
  3628.       while (ssp1 != yyssp)
  3629.     fprintf (stderr, " %d", *++ssp1);
  3630.       fprintf (stderr, "\n");
  3631.     }
  3632. #endif
  3633.  
  3634. yyerrhandle:
  3635.  
  3636.   yyn = yypact[yystate];
  3637.   if (yyn == YYFLAG)
  3638.     goto yyerrdefault;
  3639.  
  3640.   yyn += YYTERROR;
  3641.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  3642.     goto yyerrdefault;
  3643.  
  3644.   yyn = yytable[yyn];
  3645.   if (yyn < 0)
  3646.     {
  3647.       if (yyn == YYFLAG)
  3648.     goto yyerrpop;
  3649.       yyn = -yyn;
  3650.       goto yyreduce;
  3651.     }
  3652.   else if (yyn == 0)
  3653.     goto yyerrpop;
  3654.  
  3655.   if (yyn == YYFINAL)
  3656.     YYACCEPT;
  3657.  
  3658. #if YYDEBUG != 0
  3659.   if (yydebug)
  3660.     fprintf(stderr, "Shifting error token, ");
  3661. #endif
  3662.  
  3663.   *++yyvsp = yylval;
  3664. #ifdef YYLSP_NEEDED
  3665.   *++yylsp = yylloc;
  3666. #endif
  3667.  
  3668.   yystate = yyn;
  3669.   goto yynewstate;
  3670. }
  3671. #line 2058 "c-parse.y"
  3672.  
  3673.